JS网页特效操作流程——下拉菜单列表与登录注册弹窗效果

2021-06-07 01:04

阅读:678

YPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">

标签:cursor   pointer   setattr   osi   head   操作   one   流程   add   

  下拉菜单列表


        *{
            margin: 0px;
            padding: 0px;
        }
        .menu{
            width: 1100px;
            height: 30px;
            background-image: url(img/魅力罗兰Music炫图18.jpg);
            margin-left: 200px;
            margin-top: 50px;
        }
        .btn{
            width: 183.3px;
            height: 30px;
            float: left;
            text-align: center;
            line-height: 30px;
            font-size: 14px;
            position: relative;
            overflow: hidden;
            transition: 0.5s;
        }
        .btn:hover{
            cursor: pointer;
            background-color: burlywood;
            color: white;
            max-height: 200px;
            overflow: visible;
        }
        .btn ul{
            list-style: none;
            background-color: #008000;
        }
        
    
    
    
        


        
    


登录注册弹窗效果

    


        
        
        
    

    


        
        
        
        

123

123

123

123

123

123

123


        

123

123

123

123

123

123

123


        

123

123

123

123

123

123

123


        

123

123

123

123

123

123


    

    var clientWidth = document.body.clientWidth;
    var clientHeight = document.documentElement.clientHeight;

    login.style.left = clientWidth / 2 - 250 + "px";
    login.style.top = clientHeight / 2 - 150 + "px";
    
    mask.style.height = document.body.clientHeight + "px";

    window.onresize = function() {
        var clientWidth = document.body.clientWidth;
        var clientHeight = document.documentElement.clientHeight;

        login.style.left = clientWidth / 2 - 250 + "px";
        login.style.top = clientHeight / 2 - 150 + "px";
    }
    
    btn.onclick = function(){
        mask.removeAttribute("hidden");
        login.removeAttribute("hidden");
    }
    
    mask.onclick = function(){
        mask.setAttribute("hidden","");
        login.setAttribute("hidden","hidden");
    }

上一篇:Django眼中的MVC

下一篇:JS 正则表达式


评论


亲,登录后才可以留言!