/*强调SCSS----------------------------------------*/
[sg-emphasize],/deep/[sg-emphasize] {animation: sg-emphasize .3s ease 3;
}@keyframes sg-emphasize {0% {transform: scale(1);background: rgba(3, 156, 253, 0);}50% {transform: scale(.9);background: rgba(3, 156, 253, 0.2);}100% {transform: scale(1);background: rgba(3, 156, 253, 0);}
}/*强调js----------------------------------------*/
function emphasizeFocus(emphasizeSel, focusSel) {var emphasizeDom = document.querySelector(emphasizeSel);var inputDom = focusSel ? document.querySelector(focusSel) : emphasizeDom;emphasizeDom.setAttribute("sg-emphasize", true), setTimeout(() => emphasizeDom.removeAttribute("sg-emphasize"), 900);inputDom.scrollIntoView({behavior: "smooth", block: "nearest", inline: "nearest"}), inputDom.focus();
}
简介 这是Apache Traffic Server(简称ATS)中的一个插件, 允许你从源站主动获取Object内容并填充到缓存中, 当你的所有或是大部分client request都是byte-ranged类型时, 这特别有用. 目前ATS并不能缓存byte0-range类型的request/response. 功能 检查回...