Js 漂浮層

來源:互聯網
上載者:User

 

 1<div id="scrollDiv">放些文字或圖片</div>
 2<script type="text/javascript">
 3    var x = 50,y = 60; 
 4    var xin = true, yin = true ;
 5    var step = 1 ;
 6    var delay = 10 ;
 7    var obj=document.getElementById("scrollDiv") ;
 8    
 9    function closeDiv(){
10        document.getElementById('scrollDiv').style.display='none';
11    }
12    function rollMethod() { 
13        var L=T=0;
14        var R= document.body.clientWidth-obj.offsetWidth ;
15        var B = document.body.clientHeight-obj.offsetHeight ;
16        obj.style.left = x + document.body.scrollLeft ;
17        obj.style.top = y + document.body.scrollTop ;
18        x = x + step*(xin?1:-1) ;    
19        if (x < L) { xin = true; x = L} 
20        if (x > R){ xin = false; x = R} 
21        y = y + step*(yin?1:-1) 
22        if (y < T) { yin = true; y = T } 
23        if (y > B) { yin = false; y = B } 
24        } 
25        var itl= setInterval("rollMethod()", delay) ;
26        obj.onmouseover=function(){clearInterval(itl)} ;
27        obj.onmouseout=function(){itl=setInterval("rollMethod()", delay);
28    } 
29   
30</script>
31

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.