热门IT资讯网

使用css实现图片抽屉式效果应该怎样做

发表于:2024-11-27 作者:热门IT资讯网编辑
编辑最后更新 2024年11月27日,使用css实现图片抽屉式效果应该怎样做?相信有很多人都不太了解,今天小编为了让大家更加了解css实现图片抽屉式效果的方法,所以给大家总结了以下内容,一起往下看吧。首先,我们来看一下效果:这个效果实现原

使用css实现图片抽屉式效果应该怎样做?相信有很多人都不太了解,今天小编为了让大家更加了解css实现图片抽屉式效果的方法,所以给大家总结了以下内容,一起往下看吧。

首先,我们来看一下效果:

这个效果实现原理很简单:只要你掌握css3动画和过渡相关知识就行,不用js代码;

HTML代码:

CSS代码:

*{ margin:0;padding:0; }    ul{ list-style:none; }    a{ font-size:16px;text-decoration:none;color:#666; }    div{ width:300px;margin:20px auto; }    #list li{ line-height:40px;height:40px;background:#efefef;text-indent:1em; margin-bottom:3px;overflow:hidden;-webkit-transition:height 0.3s ease;-moz-transition:height 0.3s ease-ms-transition:height 0.3s ease;-o-transition:height 0.3s ease;transition:height 0.3s ease;}    #list li img{ width:300px;height:200px;}    #list li:nth-child(1){height:240px;background:#F36;}    #list li:nth-child(1) a{ color:#fff; }    #list:hover li{ height:40px;background:#efefef; }    #list:hover li a{color:#666;}    #list li:hover{ height:240px; background:#F36;}    #list li:hover a{ color:#fff; }

以上就是使用css实现图片抽屉式效果应该怎样做的详细内容了,看完之后是否有所收获呢?如果想了解更多相关内容,欢迎来行业资讯!

0