如何在html页面中运行图像滑块

如何在html页面中运行图像滑块

本文介绍了如何在html页面中运行图像滑块的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

<div id="slide">
	 <img src="images/new images/slide1.jpg" width="970" height="260"  alt="Slide" />
 	<img src="images/new images/slide2.jpg" width="970" height="260"  alt="Slide" />
 	<img src="images/new images/slide3.jpg" width="970" height="260"  alt="Slide" />
   	 <img src="images/new images/slide4.jpg" width="970" height="260"  alt="Slide" />

</div><!-- pic -->
		<script type="text/javascript">
		$(document).ready(function() {
			$('#slide').cycle({
				fx: 'fade',
				speed: 1500,
				timeout: 5000
			});
		});
		</script>

推荐答案




这篇关于如何在html页面中运行图像滑块的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-13 10:43