博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
jquery实现图片自动播放
阅读量:6833 次
发布时间:2019-06-26

本文共 1642 字,大约阅读时间需要 5 分钟。

hot3.png

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "">

<html xmlns="">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>test</title>
<style>
ul{ margin:0px;padding:0px;width:360px;}
li{ float:left; margin-left:10px; list-style-type:none;width:40px;background-color:#96EDE4;text-align:center;}
img{ width:166px;height:112px;}
#stop{ clear:both;}
</style>
<script src="jquery.js"></script>
</head>

<body>

<div><img src="img/1.gif" id='img1' /></div>
<div><ul><li id='1'>1</li><li id='2'>2</li><li id='3'>3</li></ul></div>
<div id='stop'><input type="button" value="停止自动播放"</div>

<script>
function showImg1(){
 $('#img1').attr('src','img/1.gif');
}
function showImg2(){
 $('#img1').attr('src','img/2.gif');
}
function showImg3(){
 $('#img1').attr('src','img/3.gif');
}
function autoShow(){
 setT1 = setTimeout('showImg2()',1000);
 setT2 = setTimeout('showImg3()',2000);
 setT3 = setTimeout('showImg1()',3000);
}

function clearTimeSet(){

 clearTimeout(setT1);
 clearTimeout(setT2);
 clearTimeout(setT3);
}

var int = setInterval("autoShow()",3000);

$('#stop').click(function(){

 clearTimeSet();
 int = window.clearInterval(int); 
})

$('li').mouseover(function(){

 if($(this).attr('id') == '1'){

   
  int = window.clearInterval(int);
  clearTimeSet();
  showImg1(); 
   
 }else if($(this).attr('id') == '2'){
  
  int = window.clearInterval(int); 
  clearTimeSet();
  showImg2();
  
 }else if($(this).attr('id') == '3'){
  
  int = window.clearInterval(int);
  clearTimeSet();
  showImg3(); 
 }
})

$('li').mouseout(function(){

 int = setInterval("autoShow()",3000);
})

</script>

</body>
</html>
                                                                                                                            

                                                                                                                             李汉团   Mar 9,2012

转载于:https://my.oschina.net/adamboy/blog/43699

你可能感兴趣的文章
SylixOS lite Extension工程开发手册
查看>>
Mysql存储过程从0开始(上)
查看>>
在windows下如何新建爬虫虚拟环境和进行scrapy安装
查看>>
HSRP 技术
查看>>
网络基础~linux路由与网关、路由命令
查看>>
强大的联想4U机架式服务器ThinkSystem SR950
查看>>
美国防部:美国×××防御系统存在诸多安全问题
查看>>
阿里云搭建lamp平台
查看>>
Reverse Integer之Java实现
查看>>
Linux的SSH服务初学
查看>>
不同于FTP的另一款文件传输工具
查看>>
MYSQL 逻辑架构
查看>>
第11课--11_04_Linux网络配置之四 ifconfig及ip命令详解
查看>>
Linux命令之grep/sed/awk等行转列
查看>>
3.1 账户管理
查看>>
MySQL 多张表合并成一张表
查看>>
朋友圈广告投放优势及广告投放案例分享
查看>>
vivo Z3的Usb调试模式在哪里,开启vivo Z3Usb调试模式的教程
查看>>
能够让你提升的九个 Python 小技巧
查看>>
css3 greyscale实现去色 css3实现图片或页面变为黑白效果
查看>>