好得很程序员自学网

<tfoot draggable='sEl'></tfoot>

滚动广告+CSS布局_html/css_WEB-ITnose

研究了一下CSS布局以及CSS固定窗口,在此基础上设计了滚动广告。

先附上代码:(使用jquery-1.7-min)

   CSS布局及滚动广告  #my_windows{margin-left:2%;margin-top:20%;width:6%;height:20%;position:fixed;background-color:yellow;}#container{width:80%;height:200%;margin:0 auto;/*设置整个容器在浏览器中水平居中*/background-color:yellow;}#header{height:20%;background-color:blue;}#content{height:60%;background:#0FF;margin-top:20px;}#content_left{height:80%;width:25%;margin:3%;background:#90C;float:left;}#content_right{height:80%;width:63%;margin:3%;background:#90C;float:left;}#Footer{    height:16%;    background:#90C;    margin-top:20px;}.clear{clear:both;}    $(document).ready(function(){    $("#adds").css({"margin-top":"140px"});    setInterval("manytime()",2000);});function manytime(){    var mytest=$("#adds");    mytest.show();    mytest.css({"margin-top":"140px"});    mytest.animate({"margin-top":"0px"},1000,function(){mytest.hide()});}   

广告

查看更多关于滚动广告+CSS布局_html/css_WEB-ITnose的详细内容...

  阅读:39次