91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

用js寫的簡單輪播特效

發布時間:2020-06-22 14:26:53 來源:網絡 閱讀:359 作者:流體石頭 欄目:開發技術


效果如下

用js寫的簡單輪播特效

功能分析

1.每隔1秒換一張圖片

2.鼠標移入停止切換、鼠標離開繼續切換

3.鼠標移入到數字上面的時候,顯示和數字對應的圖片,并且停止切換,被選中的數字,背景顯示橙色

4.鼠標離開數字,從該數字后面繼續顯示

代碼如下

<!DOCTYPE html>
<html>

<head>
	<meta charset="utf-8">
	<meta http-equiv="X-UA-Compatible" content="IE=edge">
	<title></title>
	<link rel="stylesheet" href="">
	<style type="text/css">
		div,
		img,
		ul,
		li {
			padding: 0px;
			margin: 0px;
		}
		
		.content {
			width: 480px;
			height: 300px;
			border: 1px solid red;
			margin: 100px auto;
		}
		
		img {
			width: 100%;
			height: 100%;
			padding-bottom: 10px;
		}
		
		ul li {
			list-style: none;
			float: left;
			border: 1px solid orange;
			height: 30px;
			width: 58px;
			text-align: center;
			line-height: 30px;
		}
	</style>
</head>

<body>
	<div class="content">
		<img src="./img/1.jpg" alt="">
		<ul>
			<li>1</li>
			<li>2</li>
			<li>3</li>
			<li>4</li>
			<li>5</li>
			<li>6</li>
			<li>7</li>
			<li>8</li>
		</ul>

	</div>
	<script type="text/javascript">
		

		var oImg = document.getElementsByTagName('img')[0];
		var count = 1;
		function changePic(){
			count ++;
			if (count > 8) {
				count = 1;
			}
			oImg.src = 'img/'+count+ '.jpg';

		}
		var interID = setInterval(changePic, 1000);
		//鼠標移入停止播放
		oImg.onmouseover = function(){
			clearInterval(interID);
			
		}
		//鼠標移出繼續播放
		oImg.onmouseout = function(){
				//console.log(interID);
				clearInterval(interID);
				interID = setInterval(changePic, 1000);	
				
		}
		//鼠標移入到數字上的時候,顯示對應的圖片
		var oLi = document.getElementsByTagName('li');
		//console.log(oLi.length);
		for (var num = 0; num < oLi.length; num++) {
			//給每個li標簽增加屬性,保存當前的索引位置
			oLi[num].index = num;
			//移到到數字上,停止播放
			oLi[num].onmouseover = function(){
				//停止播放
				clearInterval(interID);
				this.style.background = 'orange';
				count = this.index;
				//調用循環播放圖片方法
				changePic();
			}
			//移出時,繼續從停止的地方播放
			oLi[num].onmouseout = function(){
				clearInterval(interID);
				interID = setInterval(changePic, 1000);
				this.style.background = 'white';
				count = this.index;
				changePic();
			}
		}
	</script>
</body>

</html>


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

阜宁县| 河西区| 英吉沙县| 太和县| 遂昌县| 东阳市| 齐河县| 晋宁县| 宁明县| 石城县| 阿克| 浪卡子县| 河池市| 金山区| 且末县| 微山县| 高雄市| 宁安市| 平舆县| 日喀则市| 霍林郭勒市| 阆中市| 南投市| 兖州市| 怀安县| 北辰区| 任丘市| 抚远县| 和林格尔县| 赣榆县| 遂昌县| 张家口市| 武山县| 海淀区| 崇文区| 清远市| 湛江市| 吕梁市| 江达县| 瓦房店市| 隆德县|