Advertisement

jQuery开发图片自动显示隐藏功能

阅读量:
复制代码
    <!DOCTYPE html>
    <html>
    	<head>
    		<meta charset="UTF-8">
    		<title>首页</title>
    		<style>
    			#father{
    				border: 0px solid red;
    				width: 1300px;
    				height: 2170px;
    				margin: auto;
    			}
    		</style>
    		
    		<script type="text/javascript" src="../js/jquery-1.8.3.js" ></script>
    		<script>
    			$(function(){
    				//1.书写显示广告图片的定时操作
    				time = setInterval("showAd()",3000);
    			});
    			
    			//2.书写显示广告图片的函数
    			function showAd(){
    				//3.获取广告图片,并让其显示
    				//$("#img2").show(1000);
    				//$("#img2").slideDown

全部评论 (0)

还没有任何评论哟~