小编给大家分享一下如何使用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-transition-property:all;
-webkit-transition-duration:.5s;
-webkit-transition-timing-function:cubic-bezier(0,1,0.5,1);
-moz-transition-property:all;
-moz-transition-duration:.5s;
-moz-transition-timing-function:cubic-bezier(0,1,0.5,1);
-o-transition-property:all;
-o-transition-duration:.5s;
-o-transition-timing-function:cubic-bezier(0,1,0.5,1);
-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实现图片的滑动效果”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注编程网行业资讯频道!