이 기사의 예에서는 큰 이미지의 슬라이딩 화면을 일정한 간격으로 작은 배너 이미지로 축소하도록 구현하는 jquery 광고 코드에 대해 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 세부 내용은 다음과 같습니다.
jQuery를 기반으로 한 JS 광고 특수 효과입니다. 대형 슬라이딩 화면 광고가 정기적으로 작은 배너 이미지 광고 코드로 축소되는 형태입니다. 이러한 광고는 여전히 주요 포털 사이트에서 처음 볼 수 있습니다. 웹 페이지를 엽니다. 아래로 미끄러지는 큰 그림 광고로 이동합니다. 잠시 후 광고가 자동으로 줄어들고 광고를 닫는 닫기 버튼이 있는 배너 광고가 됩니다.
런닝 효과 스크린샷은 다음과 같습니다.
온라인 데모 주소는 다음과 같습니다.
http://demo.jb51.net/js/2015/jquery-scroll-big-pic-cha-style-codes/
구체적인 코드는 다음과 같습니다.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>jQuery顶部大图定时缩为小广告可关闭代码</title> <style> body{ margin:0; padding:0;} img{ border:0} .root1200{ width:1200px; height:100px; margin:0 auto; overflow:visible} .wrapper em{ width:40px; height:15px; float:left; color:#FFF; font-size:12px; font-family:Verdana, Geneva, sans-serif;background:#333; margin:0 0 -20px 10px; padding:2px 5px 2px 10px; z-index:999; position:absolute; top:10px;} </style> <script language="javascript" src="jquery-1.6.2.min.js"></script> </head> <body> <script type="text/javascript"> /* * 宽窄屏切换 * */ var bigscreen = false; if ( screen.width>=1200 ) { bigscreen = true; var bodyTag = document.getElementsByTagName("body")[0], bodyClassName = bodyTag.getAttribute("className") || bodyTag.getAttribute("class"); bodyClassName = bodyClassName ? bodyClassName+" " : ""; bodyTag.className = bodyClassName+"root1200"; } </script> <div class="wrapper" id="snActive-wrap"> <em title="关闭广告">Close</em> <a target="_blank" name="redbaby_none_ggw_dt01" title="小图" href="/"></a> <a target="_blank" name="redbaby_none_ggw_dt01" title="大图" href="/"></a> </div> <script type="text/javascript"> ~function (){ var snActive = window.snActive = document.getElementById("snActive-wrap"), a = snActive.getElementsByTagName("a"), h = 0, w, imgSrc = []; if (bigscreen){ w = 1190; imgSrc[0] = "images/1390124030537_1200.jpg";// 40 imgSrc[1] = "images/1390124049068_1200.jpg";// 500 } else { w = 990; imgSrc[0] = "images/1390124028186.jpg";// 40 imgSrc[1] = "images/1390124043025.jpg";// 500 } snActive.style.overflow = 'hidden'; a[0].style.display = "none"; a[0].innerHTML += '<img width="' + w + '" height="40" src="' + imgSrc[0] + '" style="display:block" />'; if(a[1]){ a[1].innerHTML += '<img width="' + w + '" height="500" src="' + imgSrc[1] + '" style="display:block" />'; } }(); //关闭通栏广告 var snActive = $(snActive), hideImg = snActive.find('a:hidden'), em = snActive.find("em"); timeout = !1; if(hideImg[0]) { timeout = setTimeout(function(){ snActive.animate({height:40},600,function(){ hideImg.siblings('a:visible').hide(); hideImg.show(); em.show().live("click",function(){ snActive.slideUp(300); }); }); }, 3000) } </script> <div style="text-align:center;clear:both"> </div> </body> </html>
이 기사가 모든 사람의 jquery 프로그래밍 설계에 도움이 되기를 바랍니다.