首页 前端知识 实现 抽屉效果 css3

实现 抽屉效果 css3

2024-02-23 11:02:47 前端知识 前端哥 746 781 我要收藏

 

<style>
    #box{
        width:2000px;
        height:328px; 
        overflow: hidden;
    }
    #box >div{
        width: 250px;
        height:328px;
        background-image: url('https://img0.baidu.com/it/u=1032314795,3433105171&fm=253&fmt=auto&app=138&f=JPEG?w=889&h=500');
        float: left;
        cursor: pointer;
        transition: width 1s;
    }
    #box>div:hover{
        width:889px;
    }
</style>
<div id="box">
    <div></div>
    <div></div>
    <div></div>
    <div></div>
</div>

转载请注明出处或者链接地址:https://www.qianduange.cn//article/2572.html
标签
评论
发布的文章

程序员的中秋节

2024-03-09 09:03:01

js中几种追加元素的方法

2024-03-08 10:03:38

大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!