简体   繁体   中英

nivo slider on hover show prev and next buttons

Could anyone help me on this please. Is there a way to show Nivo Slider next. and prev. buttons only when the mouse is over the slides?

You could use some CSS for that. I don't know the exact elements without some sample code, but the essence is this :

<div class="parent">
    <div> <!--STUFF--></div>
    <div class="navigation-links"><!--LINKS--></div>
</div>

for the above simplistic markup, just use the following CSS:

.parent .navigation-links { display:none; }
.parent:hover .navigation-links { display:block; }

and you should have the desired effect.

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