현탁 광고층

2695 단어

원본 코드




    
    <meta charset="utf-8"/>

<script>
    function goScroll(a){
        var space=document.getElementById(a).offsetTop;
        document.getElementById(a).style.top=space+'px';
        var goTo =0;
        window.setInterval(function(){
            var height=document.documentElement.scrollTop+document.body.scrollTop+space;
            var top=parseInt(document.getElementById(a).style.top);
            if (height!=top) {
                goTo=height-parseInt((height-top)*0.9);
                document.getElementById(a).style.top=goTo+'px';
            }
        },50);
    }
    function init(){
        goScroll('conl');
    }
</script>
<style>
    #conl{
        background-color: gray;
        left: 0px;
        top: 100px;
        width: 100px;
        height: 100px;
        position: absolute;
        z-index=1;
    }
    body{
        height: 8000px;
    }
    
</style>

<div id="conl"> </div>


</code></pre> 
 <h1> </h1> 
 <h2>1.</h2> 
 <p>offsetTop :<br/>  .<br/>  . style.top .<br/> scrollTop: . , .<br/> document .documentElement.scrollTop;  , :<br/>  : document .body.scrollTop;<br/>  </p> 
 <blockquote> 
  <p>document.body.scrollTop document.documentElement.scrollTop , JS , :chrome document.documentElement.scrollTop!<br/>  , ( docType) , documentElement.scrollTop , chrome firefox , , ,chrome document.body.scrollTop. ,document.body.scrollTop document.documentElement.scrollTop , scrollTop ? JavaScript ? 。 document.body.scrollTop document.documentElement.scrollTop , 。 document.body.scrollTop ,document.documentElement.scrollTop 0; 。 , scrollTop , :<br/> var sTop=document.body.scrollTop+document.documentElement.scrollTop;<br/>  0, scrollTop 。 , 。</p> 
 </blockquote> 
 <h2>2.parseInt()</h2> 
 <p>parseInt(string, radix)<br/> radix, , 2 、8 、10 、16 。 2~36, JS , 10 。<br/>   2   36,  parseInt()   NaN。</p> 
 <h2>3.setInterval</h2> 
 <p> :<br/> setInterval(function(){trace(" 1 ")},1000);<br/> // function(){} 。 , 1000 , 。</p> 
 <h2>4.alert(typeof(top));</h2> 
 <p> </p> 
 <h2>5. </h2> 
 <p>==  === !=  >  =  <= </p> 
 <h2>6. </h2> 
 <p>function back(){<br/> document.documentElement.scrollTop = document.body.scrollTop =0;<br/> }</p> 
</article>
                            </div>
                        </div>

좋은 웹페이지 즐겨찾기