hexo-blog-deploy/js/cursor/zjAdd.js

22 lines
616 B
JavaScript
Raw Normal View History

2023-05-07 06:34:22 +00:00
function musicChange() {
// let element = document.querySelector(".jtZj");
// let rotate = document.querySelector(".jtZj-rotate");
// if(rotate == null) {
// element.classList.add("jtZj-rotate");
// }else {
// element.classList.remove("jtZj-rotate");
// }
var box = document.getElementById("musicZJ");
var element = document.querySelector(".musicwyy1");
if(box.style.display == "none") {
box.style.display = "inline-block";
element.style.zIndex = 100;
}else {
box.style.display = "none";
element.style.zIndex = -100;
}
}