任意一款焦点图或幻灯片在图片的左右两侧都带有前后导航的箭头按钮,本款html5插件使用html5 svg和css3实现了15种不同效果的焦点图导航箭头按钮动画效果。
HTML结构
下面是其中一种效果的html结构:
<nav class="nav-thumbflip"> <a class="prev" href="/item1"> <span class="icon-wrap"><svg class="icon" width="32" height="32" viewBox="0 0 64 64"><use xlink:href="#arrow-left-5"></svg></span> <img src="img/9.png" alt="Previous thumb"/> </a> <a class="next" href="/item3"> <span class="icon-wrap"><svg class="icon" width="32" height="32" viewBox="0 0 64 64"><use xlink:href="#arrow-right-5"></svg></span> <img src="img/10.png" alt="Next thumb"/> </a> </nav>
CSS代码
.nav-thumbflip a { perspective: 1000px; } .nav-thumbflip a.prev { perspective-origin: 100% 50%; } .nav-thumbflip a.next { perspective-origin: 0% 50%; } .nav-thumbflip .icon-wrap { display: block; width: 100px; height: 100px; background-color: #b1a798; transition: background-color 0.3s; } .nav-thumbflip svg.icon { position: relative; top: 50%; transition: fill 0.3s; transform: translateY(-50%); fill: #fff; } .nav-thumbflip img { position: absolute; top: 0; transition: transform 0.3s; backface-visibility: hidden; } .nav-thumbflip a.prev img { left: 100%; transform: rotateY(90deg); transform-origin: 0% 50%; } .nav-thumbflip a.next img { right: 100%; transform: rotateY(-90deg); transform-origin: 100% 50%; } .nav-thumbflip a:hover .icon-wrap { background-color: #fff; } .nav-thumbflip a:hover svg.icon { fill: #c1b8ab; } .nav-thumbflip a:hover img { transform: rotateY(0deg); }
更详细的教程请参看《html5制作焦点图左右导航箭头样式》