实际效果预览:
蚌医学生论坛
http://www.bbyxy.com/
效果截图:
1. 进入任意页面 比如论坛首页 点击DIY
2. 在需要的地方添加一个模块 空间类 > 记录模块
里面的设置项就不赘述了 按你的需求设置下
点击确定 样式那里也设置下 再确定
3. 鼠标移到你刚添加的模块那 弹出"编辑" 点击它 然后选择属性 > 模块模板
把原来里面的代码替换成以下代码即可
- <style type="text/css">
- ul,li{list-style:none;}
- .wplck{position:relative;height:195px;overflow:hidden;margin:0px auto; }
- .sliderlck{position:absolute;width:98%;}
- .fllck{float:left;}
- .sliderlck img{display:block;padding:2px;border:1px solid #ccc;}
- .sliderlck li{padding:5px 0;border-bottom:1px dashed #ccc;overflow:hidden;width:100%;}
- .sliderlck p{font-size:12px;padding-left:46px;color:#666;line-height:18px;}
- </style>
- <script type="text/javascript">
- function H$(i) {return document.getElementById(i)}
- function H$$(c, p) {return p.getElementsByTagName(c)}
- var sliderlck = function () {
- function init (o) {
- this.id = o.id;
- this.at = o.auto ? o.auto : 3;
- this.o = 0;
- this.pos();
- }
- init.prototype = {
- pos : function () {
- clearInterval(this.__b);
- this.o = 0;
- var el = H$(this.id), li = H$$('li', el), l = li.length;
- var _t = li[l-1].offsetHeight;
- var cl = li[l-1].cloneNode(true);
- cl.style.opacity = 0; cl.style.filter = 'alpha(opacity=0)';
- el.insertBefore(cl, el.firstChild);
- el.style.top = -_t + 'px';
- this.anim();
- },
- anim : function () {
- var _this = this;
- this.__a = setInterval(function(){_this.animH()}, 20);
- },
- animH : function () {
- var _t = parseInt(H$(this.id).style.top), _this = this;
- if (_t >= -1) {
- clearInterval(this.__a);
- H$(this.id).style.top = 0;
- var list = H$$('li',H$(this.id));
- H$(this.id).removeChild(list[list.length-1]);
- this.__c = setInterval(function(){_this.animO()}, 20);
- //this.auto();
- }else {
- var __t = Math.abs(_t) - Math.ceil(Math.abs(_t)*.07);
- H$(this.id).style.top = -__t + 'px';
- }
- },
- animO : function () {
- this.o += 2;
- if (this.o == 100) {
- clearInterval(this.__c);
- H$$('li',H$(this.id))[0].style.opacity = 1;
- H$$('li',H$(this.id))[0].style.filter = 'alpha(opacity=100)';
- this.auto();
- }else {
- H$$('li',H$(this.id))[0].style.opacity = this.o/100;
- H$$('li',H$(this.id))[0].style.filter = 'alpha(opacity='+this.o+')';
- }
- },
- auto : function () {
- var _this = this;
- this.__b = setInterval(function(){_this.pos()}, this.at*1000);
- }
- }
- return init;
- }();
- </script>
- </head>
- <div class="wplck">
- <ul id="sliderlck" class="sliderlck">
- [loop]
- <li>
- <a class="fllck" href="home.php?mod=space&uid={uid}" {target}><img src="{avatar}" width="33" height="33" alt="{username}" /></a>
- <p><a href="home.php?mod=space&uid={uid}" title="{username}"{target}>{username}</a>:{title}</p>
- <p><em class="xg1 xw0">{dateline}</em> <a style="color:#6EAFD5" href="{url}"{target}>[回复]</a></p>
- </li>
- [/loop]
- </ul>
- </div>
- <script type="text/javascript">
- new sliderlck({id:'sliderlck'})
- </script>
复制代码
相关插件:
记录调用(上下无缝滚动版)For Discuz!X 1.5 【绿色】
https://discuz.dismall.com/thread-1978539-1-1.html
|