zoukankan      html  css  js  c++  java
  • JQ_首页广告案例

    /*----css----*/

    <style type="text/css">
    .shao-add{height:672px;background:url(http://zunjueclub.com/img/bg/add_bg00.jpg) no-repeat center top;}
    .shao-add-bg{background:url(img/bg/add_bg01.gif) repeat-x 0 0;position:relative;height:0;overflow:hidden;}
    .shao-close{position:absolute;bottom:0;left:50%;font:12px/22px Arial;color:#FFF;cursor:pointer;100px;margin-left:-50px;text-align:center;display:none;}
    </style>

    /*----html----*/

    <div class="shao-add-bg" id="shaoAdd">
     <div class="shao-add"></div>
     <div class="shao-close" id="shaoAddClose">关 闭</div>
    </div>

    /*----js----*/

    <script type="text/javascript">
    function winHeight(){return window.innerHeight || document.documentElement.clientHeight; };
    (function(){
        var _hei = winHeight();
        document.body.style.height = _hei+"px";
    })();
    function imgload(url,callback){
        var _img = new Image();
        _img.src = url;
        if(_img.complete == false){
            _img.onload = function(){
            callback();
            };
            }else{
            callback();
            }
        }
    imgload("http://zunjueclub.com/img/bg/add_bg00.jpg",function(){
        $("#shaoAdd").animate({
            height:672
            },1000,function(){
            $("#shaoAddClose").show();
            });
            setTimeout(function(){
                $("#shaoAdd").animate({
                    height:0
                    },1000);
                },5000);
        $("#shaoAddClose").click(function(){
            $("#shaoAdd").animate({
                    height:0
                    },1000);
            });
        });
    </script>

  • 相关阅读:
    H5 _拖放使用
    CSS _text-align:justify;实现两端对齐
    Tips_钉钉免登前端实现
    快速组建的开发团队要怎么活下来?
    程序员,你的安全感呢?
    从自我驱动到带领10人团队
    你会给别人提反馈吗?
    简单几步成为微信公众平台开发者
    你了解javascript中的function吗?(1)
    容器之路 HashMap、HashSet解析(一)
  • 原文地址:https://www.cnblogs.com/somesayss/p/2708155.html
Copyright © 2011-2022 走看看