小编给大家分享一下如何使用css实现图片的滑动效果,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!
<!DOCTYPEhtml>
<html>
<head>
<metacharset="UTF-8">
<title>css怎么实现图片滑动</title>
<styletype="text/css">
img{
height:200px;
width:200px;
}
.slider{
overflow-y:hidden;
max-height:500px;
/*最大高度*/
background:pink;
height:200px;
width:200px;
/*Webkit内核浏览器:SafariandChrome*/
-webkit-transition-property:all;
-webkit-transition-duration:.5s;
-webkit-transition-timing-function:cubic-bezier(0,1,0.5,1);
/*Mozilla内核浏览器:firefox3.5+*/
-moz-transition-property:all;
-moz-transition-duration:.5s;
-moz-transition-timing-function:cubic-bezier(0,1,0.5,1);
/*Opera*/
-o-transition-property:all;
-o-transition-duration:.5s;
-o-transition-timing-function:cubic-bezier(0,1,0.5,1);
/*IE9*/
-ms-transition-property:all;
-ms-transition-duration:.5s;
-ms-transition-timing-function:cubic-bezier(0,1,0.5,1);
}
.slider.closed{
max-height:0;
}
</style>
</head>
<body>
<divstyle="height:200px;width:200px;border:1pxsolid#ccc;">
<divclass="slider"id="slider">
<imgsrc="2.png">
</div>
</div>
<buttononclick="document.getElementById('slider').classList.toggle('closed');">点击试试</button>
</body>
<html>
以上是“如何使用css实现图片的滑动效果”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注亿速云行业资讯频道!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。