给你的点点主题添加NIVO SLIDER幻灯效果
最近给我的生物技术新站制作主题的时候用到了一个NIVO幻灯效果,觉得还是挺不错的,今天就在这里分享下。
效果图:
下面是就是js代码部分
1.首先在你的模板header中加如以下内容(此处仅适用于点点,如想通用,直接省略)
注意:图片比例968*250(根据这个比例就行 或者自行修改css)
{#text:幻灯标题1|value:""}
{#image:幻灯图片1|value:"http://x.papaapp.com/farm1/2893f5/9a3f3a8e/1.jpg"}
{#text:幻灯标题2|value:""}
{#image:幻灯图片2|value:"http://x.papaapp.com/farm1/2893f5/947e2774/2.jpg"}
{#text:幻灯标题3|value:""}
{#image:幻灯图片3|value:"http://x.papaapp.com/farm1/2893f5/fbb159c9/3.jpg"}
2.js部分
加入jquery库内容(如果你的主题已有此js就可以省去)
<script type="text/javascript" src="http://t.papaapp.com/js/libs/jquery/jquery-1.7-latest.js"></script>
然后就是幻灯的js内容部分
<script type="text/javascript" src="http://x.papaapp.com/farm1/ef4a7b/9df5ffb7/jquery.nivo.slider.js"></script>
<script type="text/javascript">
$(window).load(function() {
$('#slider').nivoSlider();
});
</script>
3.div部分(此处仅适用于点点模板,如想通用,则自定替换里面的变量为你的内容)
<div class="slider-wrapper theme-default">
<div id="slider" class="nivoSlider">
<img src="{$_幻灯图片1}" alt="{$_幻灯标题1}" title="{$_幻灯标题1}" />
<img src="{$_幻灯图片2}" alt="{$_幻灯标题3}" title="{$_幻灯标题3}" />
<img src="{$_幻灯图片3}" alt="{$_幻灯标题3}" title="{$_幻灯标题3}"/>
</div>
</div>
PS:如果你想带上链接的话 就在img前面加个A标签就行啦,就如第一个(第二 三个甚至是第四个就依葫芦画瓢吧)来说
<a href="{$_幻灯链接地址1}"><img src="{$_幻灯图片1}" alt="{$_幻灯标题1}" title="{$_幻灯标题1}" /></a>
然后在第一步的地方添加一个自定义选项
{#text:幻灯链接地址1|value:""}
还有值得一题的是,幻灯标题是支持html代码的哦
4.css部分
- /*nivo by huilang.me */
- .theme-default .nivoSlider{position:relative; background:#fff url(http://x.papaapp.com/farm1/5b42e2/dd6b7b0b/F68B6.gif) no-repeat 50% 50%; margin-bottom:10px; -webkit-box-shadow: 0px 1px 5px 0px #4a4a4a; -moz-box-shadow: 0px 1px 5px 0px #4a4a4a; box-shadow: 0px 1px 5px 0px #4a4a4a; height: 250px;}
- .theme-default .nivoSlider img{position:absolute; top:0px; left:0px; display:none;}
- .theme-default .nivoSlider a{border:0; display:block;}
- .theme-default .nivo-controlNav{text-align: center;}
- .theme-default .nivo-controlNav a{display:inline-block; width:22px; height:22px; background:url(http://x.papaapp.com/farm1/5b42e2/acc66fce/F4CE5.png) no-repeat; text-indent:-9999px; border:0; margin: 0 2px;}
- .theme-default .nivo-controlNav a.active{background-position:0 -22px;}
- .theme-default .nivo-directionNav a{display:block; width:30px; height:30px; background:url(http://x.papaapp.com/farm1/5b42e2/09b24f1a/47AD6.png) no-repeat; text-indent:-9999px; border:0; opacity: 0; -webkit-transition: all 200ms ease-in-out; -moz-transition: all 200ms ease-in-out; -o-transition: all 200ms ease-in-out; transition: all 200ms ease-in-out;}
- .theme-default:hover .nivo-directionNav a { opacity: 1; }
- .theme-default a.nivo-nextNav{background-position:-30px 0; rightright:15px;}
- .theme-default a.nivo-prevNav{left:15px;}
- .theme-default .nivo-caption {font-family: Helvetica, Arial, sans-serif;}
- .theme-default .nivo-caption a { color:#fff; border-bottom:1px dotted #fff;}
- .theme-default .nivo-caption a:hover {color:#fff;}
- .theme-default .nivo-controlNav.nivo-thumbs-enabled{width: 100%;}
- .theme-default .nivo-controlNav.nivo-thumbs-enabled a{width: auto; height: auto; background: none; margin-bottom: 5px;}
- .theme-default .nivo-controlNav.nivo-thumbs-enabled img{display: block; width: 120px; height: auto;}
- .nivoSlider{position:relative; width:100%; height:auto; overflow: hidden;}
- .nivoSlider img{position:absolute; top:0px; left:0px; max-width: none;}
- .nivo-main-image{display: block !important; position: relative !important; width: 100% !important;}
- /* If an image is wrapped in a link */
- .nivoSlider a.nivo-imageLink{position:absolute; top:0px; left:0px; width:100%; height:100%; border:0; padding:0; margin:0; z-index:6; display:none;}
- /* The slices and boxes in the Slider */
- .nivo-slice{display:block; position:absolute; z-index:5; height:100%; top:0;}
- .nivo-box{display:block; position:absolute; z-index:5; overflow:hidden;}
- .nivo-box img { display:block; }
- /* Caption styles */
- .nivo-caption{position:absolute; left:0px; bottombottom:0px; background:#000; color:#fff; width:100%; z-index:8; padding: 5px 10px; opacity: 0.8; overflow: hidden; display: none; -moz-opacity: 0.8; filter:alpha(opacity=8); -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
- .nivo-caption p{padding:5px; margin:0;}
- .nivo-caption a{display:inline !important;}
- .nivo-html-caption {display:none;}
- .nivo-directionNav a{position:absolute; top:45%; z-index:9; cursor:pointer;}
- .nivo-prevNav{left:0px;}
- .nivo-nextNav{rightright:0px;}
- .nivo-controlNav{text-align:center;}
- .nivo-controlNav a{cursor:pointer;}
- .nivo-controlNav a.active {font-weight:bold;}
这样就搞定啦,附上点点后台自定义项目图片,这样就可以简单的在后台进行幻灯的替换操作了(此后台仅适用于点点)
注:如果只想显示在首页,则加入一下代码
{?view.list}这里放你要显示在首页的内容{/view.list}
ps:此处的首页指列表页。且仅适用于点点模板。