1 2 3 4 5 6 7 8 9 10 11 12 13 14 | //鼠标移动 var scrollMove = function () { window.onscroll = window.onload = function () { var scrollsidebar = document.getElementById( "scrollsidebar" ); var scrolltop = document.body.scrollTop || document.documentElement.scrollTop; startMove( parseInt( (document.documentElement.clientHeight - scrollsidebar.offsetHeight) /2 +scrolltop ) ); }; }; |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | //悬浮QQ显示 var slideShow = function () { if (!show_btn) return false ; show_btn.addEventListener( "click" , function () { show_btn.style.width = 0; sideContent.style.width = "154px" ; }, false ); }; //悬浮QQ隐藏 var slideClose = function () { if (!close_btn) return false ; close_btn.addEventListener( "click" , function () { console.log( this ); sideContent.style.width = 0; show_btn.style.width = "25px" ; }, false ); }; |
特别申明:
本站所有资源都是由网友投稿发布,或转载各大下载站,请自行检测软件的完整性!
本站所有资源仅供学习与参考,请勿用于商业用途,否则产生的一切后果将由您自己承担!
如有侵权请联系我们删除下架,联系方式:lei1294551502@163.com