zoukankan      html  css  js  c++  java
  • 现在流行的div弹出效果

    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
     
    <title>弹出特效</title>
     
    <script>
    var falpha
    falpha=0
    function fchange(){
    if (falpha!=90){
            table1.style.filter="alpha(opacity="+falpha+")";
            falpha=falpha+10;
            setTimeout("fchange()",200)
            }
    else { falpha=0;
        }
    }
    function sss(){        
            table1.style.height=(window.document.body.clientHeight>window.document.body.scrollHeight)?window.document.body.clientHeight:window.document.body.scrollHeight;
            table1.style.width="100%";
            table1.style.display='block'
            table2.style.left=window.document.body.scrollWidth/2-100;
            table2.style.top=window.document.body.offsetHeight/2-100
            table2.style.display='block'
            fchange()
    }

    function freset(){
    table1.style.display='none'
    table2.style.display='none'
    }

    </script>


     

    <script language="javascript" type="text/javascript">
    <!--
    var ie=document.all
    var ns6=document.getElementById&&!document.all

    var dragapproved=false
    var z,x,y

    function move(e){
    if (dragapproved){
    z.style.left=ns6? temp1+e.clientX-x: temp1+event.clientX-x
    z.style.top=ns6? temp2+e.clientY-y : temp2+event.clientY-y
    return false
    }
    }

    function drags(e){
    if (!ie&&!ns6)
    return
    var firedobj=ns6? e.target : event.srcElement
    var topelement=ns6? "HTML" : "BODY"

    while (firedobj.tagName!=topelement&&firedobj.className!="table2"){
    firedobj=ns6? firedobj.parentNode : firedobj.parentElement
    }

    if (firedobj.className=="table2"){
    dragapproved=true
    z=firedobj
    temp1=parseInt(z.style.left+0)
    temp2=parseInt(z.style.top+0)
    x=ns6? e.clientX: event.clientX
    y=ns6? e.clientY: event.clientY
    document.onmousemove=move
    return false
    }
    }
    document.onmousedown=drags
    document.onmouseup=new Function("dragapproved=false")

    //-->
    </script>
    </head>

    <body>

    <div id="table1" style=" background:#FFFFFF; display: none; position: absolute;z-index:1;filter:alpha(opacity=40)" oncontextmenu="return false">
     
    </div>

    <div class="table2" id="table2" style="position:absolute; onmousedown=MDown(table2);background:#CCCCCC; display:none; z-index:2; 300; height:200; border-left:solid #000000 1px; border-top:solid #000000 1px; border-bottom:solid #000000 1px; border-right:solid #000000 1px; cursor:move;" cellspacing="0" cellpadding="0" oncontextmenu="return false">
     <input type="button" onClick="freset()" value='确定'> <input type="button" onClick="freset()" value='取消'>
     
    </div>


    <center>
    <input name="button" type="button" onClick="sss()" value='申请提交'>
    </center>
     
     

    </body>
    </html>

    噢耶游戏是中国最大的轻社交游戏开发商,致力于手机页游的研发及推广业务。我们首创性地提出了HTML5游戏中心思路,在第三方App 中嵌入式休闲游戏,为开发者提供了全新的应用内游戏解决方案。
  • 相关阅读:
    mongodb数据库迁移
    idea激活
    常见加密方式
    restful请求风格使用详解
    Jreble破解使用
    websocket入门与分布式websocket
    分布式Session的解决方案
    mysql基础知识与优化总结
    分布式事务详解
    多线程总结与使用
  • 原文地址:https://www.cnblogs.com/yintian2/p/791985.html
Copyright © 2011-2022 走看看