几种常用的特效
2018-06-24 01:32:29来源:未知 阅读 ()
1.回到顶部
1 <script> 2 var goTop = document.getElementById('goTop'); 3 goTop.onclick = function () { 4 var scrollTop = document.documentElement.scrollTop || document.body.scrollTop; 5 var timer = setInterval(function () { 6 window.scrollTo(0, scrollTop-=10); 7 if(scrollTop <= 0){ 8 clearInterval(timer); 9 } 10 }, 30); 11 }; 12 </script>
2.拖拽方框到指定位置
1 <script> 2 var oDiv = document.getElementById('div1'); 3 oDiv.onmousedown = function (e) { 4 e = e || window.event; 5 //获得鼠标当前所在位置相对于div左边和上边的距离 6 var disX = e.clientX - oDiv.offsetLeft; 7 var disY = e.clientY - oDiv.offsetTop; 8 document.onmousemove = function (e) { 9 e = e || window.event; 10 oDiv.style.left = e.clientX - disX + 'px'; 11 oDiv.style.top = e.clientY - disY + 'px'; 12 }; 13 oDiv.onmouseup = function () { 14 document.onmousemove = null; 15 }; 16 }; 17 </script>
3.轮播图
1 function changImg(elem) { 2 for(var i=0; i<aLi.length; i++){ 3 aLi[i].className = ''; 4 aImgs[i].className = ''; 5 } 6 elem.className = 'selected'; 7 aImgs[elem.index].className = 'selected'; 8 } 9 oNext.onclick = function () { 10 index++; 11 if(index == aLi.length){ 12 index = 0; 13 } 14 changImg(aLi[index]); 15 }; 16 oPrev.onclick = function(){ 17 index--; 18 if(index == -1){ 19 index = aLi.length - 1; 20 } 21 changImg(aLi[index]); 22 }; 23 var timer; 24 function run() { 25 timer = setInterval(function () { 26 oNext.onclick(); 27 }, 2000); 28 } 29 run(); 30 oContainer.onmouseover = function () { 31 clearInterval(timer); 32 }; 33 oContainer.onmouseout = function () { 34 run(); 35 };
4.选择器
1 var aDiv = oContent.children; 2 for(var i=0; i<aLi.length; i++){ 3 aLi[i].index = i; 4 aLi[i].onclick = function () { 5 for(var i=0; i<aLi.length; i++){ 6 aLi[i].className = ''; 7 aDiv[i].className = ''; 8 } 9 this.className = 'selected'; 10 aDiv[this.index].className = 'selected'; 11 }; 12 }
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
上一篇:vue项目中遇到的问题
- JS实现标签页切换效果 2020-03-12
- 使用JS在浏览器中判断当前网络连接状态的几种方法 2020-03-12
- js调用刷新界面的几种方式 2020-03-05
- jquery遍历筛选数组的几种方法和遍历解析json对象 2020-02-29
- jquery 操作iframe的几种方法总结 2020-02-22
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash