如何编写窗口关闭事件处理程序Angular 2,我的意思是关闭不刷新.
所以我不能用 window.onBeforeunLoad();
有没有办法将滚动条的高度更改为固定高度并相应地更改滚动的内容量?这是我当前的 css 代码。
::-webkit-scrollbar {
width: 30px;
}
/* Track */
::-webkit-scrollbar-track {
box-shadow: inset 0 0 5px #003B7C;
border-radius: 10px;
background: white;
border-left: 8px solid rgba(255,255,255,0);
border-right: 8px solid rgba(255,255,255,0);
background-clip: content-box;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: linear-gradient(to right,#003B7C, #00538B, #83BBE6);
border-radius: 8px;
}
Run Code Online (Sandbox Code Playgroud) 我有一个 Asp .Net core Web api,它将运行后台服务来每天安排一些任务并发送一些邮件。在邮件中我需要有 api 的 url。除了控制器之外,还有什么方法可以在后台服务中获取主机 URL。
我有一个像
<svg>
<linearGradient id="SVGID_124_" gradientUnits="userSpaceOnUse" x1="205.2935" y1="707.9475" x2="206.9863" y2="707.9475" gradientTransform="matrix(41.432 0 0 -41.432 -8114.9512 30139.9746)">
<stop offset="0" style="stop-color:#0071BC"/>
<stop offset="3.780070e-02" style="stop-color:#0071BC"/>
<stop offset="0.6151" style="stop-color:#00538B"/>
<stop offset="0.784" style="stop-color:#004C86"/>
<stop offset="0.9966" style="stop-color:#003B7C"/>
<stop offset="1" style="stop-color:#003B7C"/>
</linearGradient>
</svg>Run Code Online (Sandbox Code Playgroud)
我不确定如何将这种线性渐变作为按钮的背景。我尝试了以下方法,但我不知道如何在 css 中进行渐变变换。
.btn {
background: linear-gradient(to right, #0071BC 0%, #0071BC 37.80070%, #00538B 061.51%, #004C86 078.4%, #003B7C 099.66%, #003B7C 100%);
color: white;
border-radius: 8px;
/* border: 1px solid #00538B; */
width: 95%;
height: 25px;
padding: 0px;
}Run Code Online (Sandbox Code Playgroud)
<button class="btn">button</button>Run Code Online (Sandbox Code Playgroud)
css ×2
html ×2
javascript ×2
.net-core ×1
angular ×1
asp.net-core ×1
scrollbar ×1
svg ×1
typescript ×1