简体   繁体   中英

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

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

For example check this one http://www.timeinc.com/home/ This was developed using flash, but i want to implement it using jQuery. Is there any plugin for that or any other help.

Thanks in advance

i dont know about jQuery but i think this sample may help you:

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;
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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