作者:陈应锋forever | 来源:互联网 | 2020-09-12 10:53
本文为大家实例讲解了css实现图片抽屉式效果的方法,具有一定的参考价值,希望可以帮助到大家。css实现图片抽屉式效果的方法很简单,只要掌握css3动画和过渡相关知识就行,不用js代码。
这个效果实现原理很简单:只要你掌握css3动画和过渡相关知识就行,不用js代码;
(推荐教程:CSS入门教程)
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; }
更多编程相关内容,请关注 第一PHP社区 编程入门栏目!
以上就是css如何实现图片抽屉式效果的详细内容,更多请关注 第一PHP社区 其它相关文章!