码迷,mamicode.com
首页 > 其他好文 > 详细

图片切换(非轮播,淡入淡出)--变形金刚joy007 项目总结

时间:2014-06-09 16:11:48      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:c   style   class   blog   code   java   

图片切换(非轮播,淡入淡出)

1.切换2.停止

bubuko.com,布布扣
<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="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="#" onclick="clearTimer()">aaaaa</a>

</body>

</html>
bubuko.com,布布扣

 

图片切换(非轮播,淡入淡出)--变形金刚joy007 项目总结,布布扣,bubuko.com

图片切换(非轮播,淡入淡出)--变形金刚joy007 项目总结

标签:c   style   class   blog   code   java   

原文地址:http://www.cnblogs.com/della/p/3776353.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!