Commit 4a631d60 by xhw

更新

parent 5313bde0
......@@ -171,6 +171,21 @@ function getXY(e, obj) {
};
}
//tab切换
function TabToggle() {
document.addEventListener('keydown', (e) => {
if (e.key === "Tab") {
e.preventDefault();
if($("#timerSlider").css("display")=="none"){
$("#timerSlider").fadeIn(1000)
}else{
$("#timerSlider").fadeOut(1000)
}
}
});
}
TabToggle()
//圆角滑块类
class RadiusSlider {
constructor(ArcL) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment