首页 > 代码库 > 图片切换(非轮播,淡入淡出)--变形金刚joy007 项目总结
图片切换(非轮播,淡入淡出)--变形金刚joy007 项目总结
图片切换(非轮播,淡入淡出)
1.切换2.停止
<html> <head> <meta content="text/html; charset=UTF-8" http-equiv="Content-Type"> <style type="text/css"> div{ position: absolute; left: 0px; top: 0px;} .div1{ width: 800px; height: 400px; background-color: #ff3366;display: none} .div2{ width: 800px; height: 400px; background-color: #33ff66;} a{ position: absolute; right: 0px;} </style> <script type="text/javascript" src="http://www.mamicode.com/scripts/jquery-1.8.1.min.js"></script> <script type="text/javascript"> $(document).ready(function(){ }); var c = setTimeout("show1()",1000); function show1(){ console.log(Math.random()); $(".div1").fadeIn(1000); $(".div2").fadeOut(1000); c = setTimeout("show2()",2000) } function show2(){ console.log("may i " + Math.random()); $(".div1").fadeOut(1000); $(".div2").fadeIn(1000); c = setTimeout("show1()",1000) } function clearTimer(){ alert("clearTimer"); clearTimeout(c) } </script> </head> <body> <div class="div1"></div> <div class="div2"></div> <a href="http://www.mamicode.com/#" onclick="clearTimer()">aaaaa</a> </body> </html>
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。