时间:2021-07-01 10:21:17 帮助过:6人阅读
购物产品展示:图片轮播器,效果如下所示:
思路说明:
每隔一段时间,实现图片的自动切换及选项卡选中效果
两个区域:
最外层容器区域,如上图红色线框矩形
选项卡区域
两个事件:
鼠标悬浮或鼠标划入mouseover
鼠标离开mouseleave
/**大屏广告滚动样式**/jQuery个性化图片轮播效果
#jnImageroll{ width:550px; height:321px; overflow: hidden; position: relative; } #jnImageroll img{ position: absolute; left: 0; top: 0; } #jnImageroll div{ position: absolute; left: 0; bottom: 0; } #jnImageroll div a{ width: 79px; background: #444444; float: left; display: inline-block; margin-right: 1px; text-align: center; padding: 5px 15px; text-decoration: none; color: #FFFFFF; font: 14px/1.5 tahoma,arial; } #jnImageroll div a em{ display: block;/*将行内元素变成块级元素*/ height: 19px; overflow: hidden; } #jnImageroll a.chos { background: #37A7D7; color: #FFFFFF; }
以上就是很有个性的jQuery图片轮播效果,希望大家喜欢。