响应式各种屏幕下的应用

此HTML/CSS代码实现了一个响应式的布局,当屏幕尺寸变化时,子菜单会以不同的方式显示。在大屏幕设备上,子菜单会在鼠标悬停时平滑滑入;在中等尺寸屏幕上,子菜单从右侧滑出;在小屏幕设备上,子菜单会在鼠标悬停时垂直滑动显示。所有这些效果都利用了CSS的媒体查询和过渡属性。
摘要由CSDN通过智能技术生成
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        *{
            margin: 0;
            padding: 0;
        }
        ul li {
            list-style: none;
        }
        @media screen and (min-width:1200px){
            .one{
                width: 80%;
                margin: 50px auto;
                height: 40px;
                background-color: aliceblue;
                /* z-index: 5; */
            }
            .one>li{
                width: 20%;
                line-height: 40px;
                text-align: center;
                float: left;
                overflow: hidden;
            }
            .two{
                /* display: none; */
                transform: translateY(-300px);
                z-index: -1;
            }
            .two li{
                background-color: aqua;
            }
            .one>li:hover .two{
                display: block;
                transform: translateY(0px);
                transition: 0.5s;
            }
        }
        @media screen and (min-width:768px) and (max-width:1200px){
            .one{
                width: 300px;
                height: 400px;
                background-color: aqua;
            }
            .one>li{
                width: 100%;
                height: 50px;
                text-align: center;
                line-height: 50px;
                position: relative;
            }
            .two{
                position: absolute;
                left: 300px;
                width: 100px;
                top: 0;
                background-color: blanchedalmond;
                height: 300px;
                transform: translate(-100px,-20PX);
                z-index: -1;
            }
            .one>li:hover .two{
                transform: translate(0,20PX);
                
                transition: 0.5s;
            }
        }
        @media screen and (max-width:768px){
            .one{
                width: 100%;                
            }
            .one li{
                width: 100%;
                text-align: center;
                height: 40px;
                line-height: 40px;
                background-color: rgb(40, 190, 177);
            }
            .two{
                /* background-color: blueviolet; */
                width: 100%;
                height: 200px;
                position: relative;
                z-index: -1;
                transform: translateY(-250px);
            }
            .one>li:hover .two{
                transform: translateY(0px);
                transition: 0.3s;
                z-index: 5;
            }
        }
    </style>
</head>
<body>
    <ul class="one">
        <li>1</li>
        <li>2</li>
        <li>3
            <ul class="two">
                <li>a</li>
                <li>c</li>
                <li>s</li>
                <li>d</li>
                <li>d</li>
            </ul>
        </li>
        <li>4</li>
        <li>5</li>
    </ul>
</body>
</html>

 

 

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值