繁体   English   中英

如何使用jQuery实现垂直图像滑块,在此之前,在显示新图像之前它将关闭并使用新图像打开

[英]How to implement vertical image slider using jquery in which before showing new image it will close and open with a new image

如何使用jquery实现垂直图像滑块,其中在显示新图像之前它将关闭并使用新图像打开。

例如检查这一个http://www.timeinc.com/home/这是使用Flash开发的,但是我想使用jQuery来实现。 是否有用于该插件或任何其他帮助的插件。

提前致谢

我不了解jQuery,但我认为此示例可以为您提供帮助:

的HTML

<body>
<div> </div>
</body>

的CSS

div {
    position:absolute;
    width:10%;
    height:40%;
    background:red;
    right:45%;
    bottom:50%;
    transition:all 0.4s ease;
}
div:hover {
    height:0;
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM