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>

  • 相关阅读:
    数据库中 dbo是什么意思
    常用的设计模式 介绍
    ReferenceEquals和 == 和equals()的比较
    IOC 控制反转模式
    集群和负载均衡
    数据库 读写分离
    C# 中using的几个用途
    WCF ABC
    SQL Server数据库性能优化(三)之 硬件瓶颈分析
    SQL Server数据库性能优化(二)之 索引优化
  • 原文地址:https://www.cnblogs.com/somesayss/p/2708155.html
Copyright © 2011-2022 走看看