JS+CSS打造的DIV随屏滚动代码(漂浮广告)_网页代码站()*{padding:0;margin:0;}
html{height:100%;}
body{height:200%;}
.box{position:absolute;width:100px;height:100px;background:#ccc}
p{height:40px;}
AD1
AD2
test!
test!
test!
test!
test!
test!
test!
test!
test!
test!
test!
test!
test!
test!
test!
test!
test!
test!
test!
test!
test!
test!
test!
test!
test!
test!
test!
test!
test!
test!
test!
test!
test!
test!
test!
test!
test!
test!
test!
test!
test!
test!
test!
test!
test!
test!
var id=function(o){return document.getElementById(o)}
var scroll=function (o){
var space=id(o).offsetTop;
id(o).style.top=space+'px';
void function(){
var goTo = 0;
var roll=setInterval(function(){
var height =document.documentElement.scrollTop+document.body.scrollTop+space;
var top = parseInt(id(o).style.top);
if(height!= top){
goTo = height-parseInt((height - top)*0.9);
id(o).style.top=goTo+'px';
}
//else{if(roll) clearInterval(roll);}
},50);
}()
}
scroll('box1');
scroll('box2');
网页代码站 - 最专业的网页代码下载网站 - 致力为中国站长提供有质量的网页代码!