jQuery如何实现中奖播报功能

这篇文章主要介绍jQuery如何实现中奖播报功能,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!

jquery是什么

jquery是一个简洁而快速的JavaScript库,它具有独特的链式语法和短小清晰的多功能接口、高效灵活的css选择器,并且可对CSS选择器进行扩展、拥有便捷的插件扩展机制和丰富的插件,是继Prototype之后又一个优秀的JavaScript代码库,能够用于简化事件处理、HTML文档遍历、Ajax交互和动画,以便快速开发网站。

1:html代码文件

相关使用说明也在页面相关位置标注啦

<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<htmlxmlns="http://www.w3.org/1999/xhtml"xml:lang="zh">
<head>
<metahttp-equiv="Content-Type"content="text/html;charset=UTF-8"/>
<title>文本滚动</title>
<linkrel="stylesheet"type="text/css"href="css/style.css"rel="externalnofollow">
<scriptsrc="jquery-1.9.1.min.js"></script>
<scriptsrc="jquery.scroll.js"></script>
<scriptsrc="txtscroll.js"></script>
<style>
.new_trade.new_trade_body.yl{margin-top:4px}
.fix_tradebottom{clear:both;background:#222;position:fixed;width:100%;left:0;z-index:12;bottom:0}
.trade_win{height:26px;line-height:26px;width:54%;text-align:center;color:#646464;font-size:12px;border-top:1pxsolid#c8c8c8;border-bottom:1pxsolid#c8c8c8;background:#f3f3f3;}
#trade_win{height:26px;line-height:26px;width:100%;overflow:hidden;}
.trade_winul{height:26px;line-height:26px}
.trade_winli{width:100%;display:block;}
.trade_winlispan{no-repeat;background-position:0px3px;background-size:13px10px;padding-left:18px;}
</style>
</head>
<h3>纵向滚动</h3>
<divclass="trade_win">
<divid="trade_win">
<ul>
<li><span>恭喜道1中奖825.00元</span></li>
<li><span>恭喜道2中奖825.00元</span></li>
<li><span>恭喜道3中奖825.00元</span></li>
<li><span>恭喜道4中奖825.00元</span></li>
<li><span>恭喜道5中奖825.00元</span></li>
<li><span>恭喜道6中奖825.00元</span></li>
<li><span>恭喜道7中奖825.00元</span></li>
</ul>
</div>
</div>
<script>
$(document).ready(function(){
//speed:滚动的速度数值越大速度越慢。timer:数据停留时间数值越大停留时间越久
$('#trade_win').Scroll({line:1,speed:1000,timer:1500});
})
</script>
<divclass="demo">

<h3>横向滚动</h3>
<divclass="demolist">
<ulclass="ul">
<li>
<h5>示例1-无滚动效果</h5>
<divclass="demo-cont">
<divclass="txt-scrolltxt-scroll-default">
<divclass="scrollbox">
<divclass="txt">
微信小程序端有关于一篇文章生成一张海报图片,用于用户保存之后分享,实际开发的过程中遇到的一些问题如下
</div>
</div>
</div>
</div>
<divclass="jsset">
<pre>
$('.txt-scroll').txtscroll({'speed':50});
//说明:文本长度不够无滚动效果
</pre>
</div>
</li>
<li>
<h5>示例2-默认参数配置</h5>
<divclass="demo-cont">
<divclass="txt-scrolltxt-scroll-default">
<divclass="scrollbox">
<divclass="txt">
微信小程序端有关于一篇文章生成一张海报图片,用于用户保存之后分享,实际开发的过程中遇到的一些问题如下.微信小程序端有关于一篇文章生成一张海报图片,用于用户保存之后分享,实际开发的过程中遇到的一些问题如下.微信小程序端有关于一篇文章生成一张海报图片,用于用户保存之后分享,实际开发的过程中遇到的一些问题如下
</div>
</div>
</div>
</div>
<divclass="jsset">
<pre>
$('.txt-scroll').txtscroll({'speed':50});
</pre>
</div>
</li>
<li>
<h5>示例2-自定义参数配置</h5>
<divclass="demo-cont">
<divclass="txt-scrolltxt-scroll-curs">
<divclass="scrollbox">
<divclass="txt">
微信小程序端有关于一篇文章生成一张海报图片,用于用户保存之后分享,实际开发的过程中遇到的一些问题如下.微信小程序端有关于一篇文章生成一张海报图片,用于用户保存之后分享,实际开发的过程中遇到的一些问题如下
</div>
</div>
</div>
</div>
<divclass="jsset">
<pre>
$('.txt-scroll').txtscroll({'speed':20});
</pre>
</div>
</li>
</ul>
</div>
</div>
<script>
//默认案例
window.onload=function(){
$('.txt-scroll-default').txtscroll({
'speed':50
});
};
//自定义参数案例
$('.txt-scroll-curs').txtscroll({
'speed':10
});
</script>
</body>
</html>

2:关键的JS 文件

(function($){
$.fn.extend({
Scroll:function(opt,callback){
if(!opt)varopt={};
var_btnUp=$("#"+opt.up);
var_btnDown=$("#"+opt.down);
vartimerID;
var_this=this.eq(0).find("ul:first");
varlineH=_this.find("li:first").height(),//获取行高
line=opt.line?parseInt(opt.line,10):parseInt(this.height()/lineH,10),//每次滚动的行数,默认为一屏,即父容器高度
auto=opt.auto!=null?opt.auto:true,//是否自动滚动,默认自动
cycle=opt.cycle!=null?opt.cycle:true,//是否循环滚动,默认循环
speed=opt.speed!=null?parseInt(opt.speed,10):500;//卷动速度,数值越大,速度越慢(毫秒)
timer=opt.timer!=null?opt.timer:3000;//滚动的时间间隔(毫秒)
if(line==0)line=1;
varupHeight=0-line*lineH;
varliCount=_this.find("li").length;//LI的总数
varshowCount=parseInt(this.height()/lineH);//显示出来的LI数量
varcurrentCount=showCount;
varscrollUp=function(){
if(!cycle&&currentCount>=liCount)return;
_btnUp.unbind("click",scrollUp);
_this.animate({
marginTop:upHeight
},speed,function(){
for(i=1;i<=line;i++){
if(!cycle&&currentCount>=liCount)break;
currentCount++;
_this.find("li:first").appendTo(_this);
}
_this.css({marginTop:0});
_btnUp.bind("click",scrollUp);
});
}
varscrollDown=function(){
if(!cycle&&currentCount<=showCount)return;
_btnDown.unbind("click",scrollDown);
for(i=1;i<=line;i++){
if(!cycle&&currentCount<=showCount)break;
currentCount--;
_this.find("li:last").show().prependTo(_this);
}
_this.css({marginTop:upHeight});
_this.animate({
marginTop:0
},speed,function(){
_btnDown.bind("click",scrollDown);
});
}
varautoPlay=function(){
if(auto){
if(timer>0)timerID=window.setInterval(scrollUp,timer);
}
};
varautoStop=function(){
if(timer)window.clearInterval(timerID);
};
_this.hover(autoStop,autoPlay).mouseout();
_btnUp.css("cursor","pointer").click(scrollUp).hover(autoStop,autoPlay);
_btnDown.css("cursor","pointer").click(scrollDown).hover(autoStop,autoPlay);
}
})
})(jQuery);

jQuery如何实现中奖播报功能

以上是“jQuery如何实现中奖播报功能”这篇文章的所有内容,感谢各位的阅读!希望分享的内容对大家有帮助,更多相关知识,欢迎关注恰卡编程网行业资讯频道!

发布于 2021-05-10 20:36:46
收藏
分享
海报
0 条评论
167
上一篇:如何使用php把文件设置为插件 下一篇:HTML5中如何在title标题标签里设置小图标的方法
目录

    0 条评论

    本站已关闭游客评论,请登录或者注册后再评论吧~

    忘记密码?

    图形验证码