この記事の例では、非常に実用的なカプレット広告コード (適応型高さ付き) の JS 実装について説明します。皆さんの参考に共有してください。詳細は以下の通りです。
これは、JS CSS DIV に基づいた非常に実用的な Web ページのカプレット広告コードです。Web ページの高さに適応します。つまり、これには、現時点では特定のデバッグ機能がありません。いる。
実行中のエフェクトのスクリーンショットは次のとおりです:
オンライン デモのアドレスは次のとおりです:
http://demo.jb51.net/js/2015/js-lr-useful-adv-auto-height-codes/
具体的なコードは次のとおりです:
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>简洁对联广告代码</title> <script language="JavaScript" type="text/javascript"> lastScrollY=0; function heartBeat(){ var diffY; if (document.documentElement && document.documentElement.scrollTop) diffY = document.documentElement.scrollTop; else if (document.body) diffY = document.body.scrollTop else {/*Netscape stuff*/} //alert(diffY); percent=.1*(diffY-lastScrollY); if(percent>0)percent=Math.ceil(percent); else percent=Math.floor(percent); document.getElementById("lovexin12").style.top=parseInt(document.getElementById ("lovexin12").style.top)+percent+"px"; document.getElementById("lovexin14").style.top=parseInt(document.getElementById ("lovexin12").style.top)+percent+"px"; lastScrollY=lastScrollY+percent; //alert(lastScrollY); } suspendcode12="<DIV id=\"lovexin12\" style='left:2px;POSITION:absolute;TOP:120px;'>ad1</div>" suspendcode14="<DIV id=\"lovexin14\" style='right:2px;POSITION:absolute;TOP:120px;'>ad2</div>" document.write(suspendcode12); document.write(suspendcode14); window.setInterval("heartBeat()",1); </script> <style type="text/css"> <!-- #lovexin12,#lovexin14{ width:100px; height:230px; background-color:yellow; border:2px solid red; } html,body{ height:800px; } #mm{ height:800px; } --> </style> </head> <body> <div id="mm"> 基于JS+CSS+DIV的网页对联广告代码 </div> </body> </html>
この記事が皆さんの JavaScript プログラミングに役立つことを願っています。