这篇文章主要介绍了jQuery实现新闻播报滚动及淡入淡出效果,结合实例形式分析了基于jQuery插件的页面元素动态变换相关操作技巧,需要的朋友可以参考下

本文实例讲述了jQuery实现新闻播报滚动及淡入淡出效果。分享给大家供大家参考,具体如下:

下面是上下滚动源码

www.jb51.net 向上滚动代码带上下翻按钮滚动特效

body{ color:#333; font-size:13px;}

h3,ul,li{margin:0;padding:0; list-style:none;}

.scrollbox{ width: 340px; margin: 0 auto; overflow: hidden; border: 1px solid #CFCFCF; padding: 10px; }

#scrollp{width:340px;height:359px; overflow:hidden;}/*这里的高度和超出隐藏是必须的*/

#scrollp li{max-height:90px; width:300px; padding:0 20px;background:url(ico-4.gif) no-repeat 10px 23px; overflow:hidden; vertical-align:bottom; zoom:1; border-bottom:#B7B7B7 dashed 1px;}

#scrollp li h3{ height:24px; padding-top:13px; font-size:14px; color:#353535; line-height:24px; width:300px;}

#scrollp li h3 a{color:#353535; text-decoration:none}#scrollp li h3 a:hover{ color:#F00}

#scrollp li p{ height:36px; width:300px; color:#416A7F; line-height:18px; overflow:hidden}

#scrollp li p a{ color:#416A7F; text-decoration:none}

.scroltit{ height:26px; line-height:26px; padding-bottom:4px; margin-bottom:4px;}

.scroltit h3{ width:100px; float:left;}

.scroltit .updown{float:right; width:32px; height:22px; margin-left:4px}

#but_up{ background:url(up.gif) no-repeat 0 0; text-indent:-9999px}

#but_down{ background:url(down.gif) no-repeat 0 0; text-indent:-9999px}

#n{margin:10px auto; width:920px; border:1px solid #CCC;font-size:12px; line-height:30px;}

#n a{ padding:0 4px; color:#333}

.test{

margin-top: 50px;

background: #CCCCCC;

border: .5px solid #ddd;

overflow: hidden;

height: 44px;

width: 100px;

}

.test li{

height: 44px;

width: 100%;

float: left;

line-height: 44px;

font-size: 18px;

border-top: .5px solid #ddd;

}

$(document).ready(function(){

$("#scrollp").Scroll({line:1,speed:500,timer:2000,up:"but_up",down:"but_down"});

(function(){

var lineH = $(".test").find("li:first").height();

var appendTo = function(){

$(".test").find("li:first").appendTo($(".test"));

$(".test ul").css("marginTop", 0);

};

var animate = function(){

$(".test ul").eq(0).animate({

marginTop: -lineH

},500,appendTo)

};

var delayer = setInterval(animate, 2000);

})()

});

特效效果如下:

  • 移动娱乐业务突飞

  • 不停转动向上滚动可控制向上向下滚动特效

    p CSS JS自动不断向上一个一个滚动可控制向上向下滚动特效...

  • 全国涂料总产量呈现直线下滑态势

    我国涂料工业将面临涂料消费税征收全面铺开,环保压力持续增加,2015年的形势不容乐观...

  • 镂空渔网超吸睛

    镂空罩衫,短短的版型穿起来显高又俏皮,内搭长款连衣裙,非常大方哦...

  • 主题创业街亮相

    目前已有包括咖啡厅、酒吧、餐厅、瑜伽室在内的8家商铺入驻该火车...

向上

向下

  • sections1
  • sections2
  • sections3
  • sections4

下面是jq插件源码

/*

jQ向上滚动带上下翻页按钮

*/

(function($){

$.fn.extend({

Scroll:function(opt,callback){

//参数初始化

if(!opt) var opt={};

var _btnUp = $("#"+ opt.up);//Shawphy:向上按钮

var _btnDown = $("#"+ opt.down);//Shawphy:向下按钮

var timerID;

var _this=this.eq(0).find("ul:first");

var lineH=_this.find("li:first").height(), //获取行高,此处行高固定但是当文字伟一行或者两行时,要动态获取吧??

line=opt.line?parseInt(opt.line,10):parseInt(this.height()/lineH,10), //每次滚动的行数,默认为一屏,即父容器高度

speed=opt.speed?parseInt(opt.speed,10):500; //卷动速度,数值越大,速度越慢(毫秒)

timer=opt.timer //?parseInt(opt.timer,10):3000; //滚动的时间间隔(毫秒)

if(line==0) line=1;

var upHeight=0-line*lineH;

//滚动函数

var scrollUp=function(){

_btnUp.unbind("click",scrollUp); //Shawphy:取消向上按钮的函数绑定

_this.animate({

//当滚动的元素height为max-height时,实时获取元素height

marginTop:-_this.find("li:first").height()

},speed,function(){

// for(i=1;i<=line;i++){

// _this.find("li:first").appendTo(_this);

// }

_this.find("li:first").appendTo(_this);

_this.css({marginTop:0});

_btnUp.bind("click",scrollUp); //Shawphy:绑定向上按钮的点击事件

});

}

//Shawphy:向下翻页函数

var scrollDown=function(){

_btnDown.unbind("click",scrollDown);

for(i=1;i<=line;i++){

_this.find("li:last").show().prependTo(_this);

}

_this.css({marginTop:-_this.find("li:first").height()});

_this.animate({

marginTop:0

},speed,function(){

_btnDown.bind("click",scrollDown);

});

}

//Shawphy:自动播放

var autoPlay = function(){

if(timer)timerID = window.setInterval(scrollUp,timer);

};

var autoStop = function(){

if(timer)window.clearInterval(timerID);

};

//鼠标事件绑定

_this.hover(autoStop,autoPlay).mouseout();

_btnUp.css("cursor","pointer").click( scrollUp ).hover(autoStop,autoPlay);//Shawphy:向上向下鼠标事件绑定

_btnDown.css("cursor","pointer").click( scrollDown ).hover(autoStop,autoPlay);

}

})

})(jQuery);

另外再贴一份,删改之后的脚本

/*

jQ向上滚动带上下翻页按钮

*/

(function($){

$.fn.extend({

txtScroll:function(opt,callback){

//参数初始化

if(!opt) var opt={};

var _btnUp = $("#"+ opt.up);//Shawphy:向上按钮

var _btnDown = $("#"+ opt.down);//Shawphy:向下按钮

var timerID;

var _this=this.eq(0).find("ul:first");

speed=opt.speed?parseInt(opt.speed,10):500; //卷动速度,数值越大,速度越慢(毫秒)

timer=opt.timer?parseInt(opt.timer,10):2000; //滚动的时间间隔(毫秒)

//滚动函数

var scrollUp=function(){

_btnUp.unbind("click",scrollUp); //Shawphy:取消向上按钮的函数绑定

_this.animate({

//当滚动的元素height为max-height时,实时获取元素height

marginTop: -_this.find("li:first").height()

},speed,function(){

_this.find("li:first").appendTo(_this);

_this.css({"marginTop":0});

_btnUp.bind("click",scrollUp); //Shawphy:绑定向上按钮的点击事件

});

}

//Shawphy:向下翻页函数

var scrollDown=function(){

_btnDown.unbind("click",scrollDown);

_this.find("li:last").show().prependTo(_this);

_this.css({marginTop:-_this.find("li:first").height()});

_this.animate({

marginTop:0

},speed,function(){

_btnDown.bind("click",scrollDown);

});

}

//Shawphy:自动播放

var autoPlay = function(){

if(timer) setIntervalT = window.setInterval(scrollUp,timer);

};

var autoStop = function(){

if(timer)window.clearInterval(setIntervalT);

};

//鼠标事件绑定

_this.hover(autoStop,autoPlay).mouseout();

_btnUp.css("cursor","pointer").click( scrollUp ).hover(autoStop,autoPlay);//Shawphy:向上向下鼠标事件绑定

_btnDown.css("cursor","pointer").click( scrollDown ).hover(autoStop,autoPlay);

}

})

})(jQuery);

运行效果如下:

上面是我整理给大家的,希望今后会对大家有帮助。

相关文章:

html实现新闻滚动效果,jQuery实现新闻播报滚动及淡入淡出效果示例相关推荐

  1. 【jQuery】使用fadeTo()方法设置淡入淡出效果的不透明度

    调用fadeTo()方法,可以将所选择元素的不透明度以淡入淡出的效果调整为指定的值,该方法的调用格式为: $(selector).fadeTo(speed,opacity,[callback]) 其中 ...

  2. html轮播图淡入淡出,一个简洁的Jquery效果 banner轮播(1) 淡入淡出效果

    朋友给我看了一个轮播效果,把js下载一看,丫丫的一个这么简单的效果,这么的就能写个几百行的,严重影响浏览器加载速度嘛,以为人家宽带流量不要钱玩的哦..无奈之下给他写了个简单的,把所有代码放上去都没有超 ...

  3. 004_淡入淡出效果

    1. jQuery淡入淡出方法 1.1. 通过jQuery, 您可以实现元素的淡入淡出效果. 1.2. jQuery拥有下面四种fade方法: fadeIn().fadeOut().fadeToggl ...

  4. JQuery:多张图片的淡入淡出效果。

    我们要实现一个这样子的一个动画:多张图片在相同的位置淡入淡出,实现图片的轮流展示.具体实现的思路: 使用定时器setInterval方法,setInterval(<要调用的方法>,时间延时 ...

  5. html淡化效果,jQuery实现基本淡入淡出效果的方法详解

    本文实例讲述了jQuery实现基本淡入淡出效果的方法.分享给大家供大家参考,具体如下: jQuery fadeIn()方法:用于淡入已隐藏的元素 jQuery fadeOut()方法:用于淡出可见的元 ...

  6. jQuery 实现淡入淡出效果

    上一节我们学习了如何实现元素的显示与隐藏,本节我们来学习如何实现元素的淡入淡出效果. fadeIn()方法 fadeIn() 方法用于淡入已隐藏的元素. 语法如下所示: $(selector).fad ...

  7. 淡入淡出效果 || 高亮显示案例

    淡入淡出效果 <!DOCTYPE html> <html lang="en"><head><meta charset="UTF- ...

  8. 原生JS实现淡入淡出效果(fadeIn/fadeOut/fadeTo)

    淡入淡出效果,在日常项目中经常用到,可惜原生JS没有类似的方法,而有时小的页面并不值得引入一个jQuery库,所以就自己写了一个,已封装, 有用得着的朋友, 可以直接使用. 代码中另附有一个设置元素透 ...

  9. jQuery动画(显示隐藏,淡入淡出,滑动)

    目录 分类 基本动画函数 显示元素 交替显示隐藏 滑动效果 向上收缩效果 向下展开效果 交替伸缩样式 淡入淡出效果 淡入效果 淡出效果 自定义不透明度 jQuery的动画函数 分类 基本动画函数:既有 ...

最新文章

  1. 优秀简历要遵循哪些规则
  2. 【Paper】2021_Synchronization of Resilient Complex Networks Under Attacks
  3. 魏鹏机器人_痴迷农业科技,他发明智能分拣机器人给胡萝卜照CT
  4. js小笔记 -- let const的理解
  5. [转]FFT倒序算法—雷德算法
  6. 18-chown命令
  7. Order by 按照自定义顺序排序
  8. linux操作系统中的netstat命令查看端口状态的使用和window操作系统查看端口号
  9. ASP.NET读取POP3邮件的操作
  10. vector,list,deque容器的迭代器简单介绍
  11. 浩鲸科技是外包公司吗_广东电商外包服务公司是什么意思_聚财猫科技
  12. 链表(python版)
  13. C++ 注册表编程(包含权限的提升)
  14. 解决Sublime Text 3在GB2312编码下的中文乱码问题
  15. 树莓派Python读取DHT11温湿度数据
  16. B2C,B2B,c2c是什么?
  17. 【Focal Loss】Focal Loss理解
  18. 终极自由之路:第二章 问题以及解决之道
  19. 软件缺陷报告与JIRA工具使用学习笔记
  20. 用计算机排序excel,【用excel名字排序的方法有哪些?这些简便的计算机技能你一定需要】- 环球网校...

热门文章

  1. 【Django毕业设计源码】Python考试题库练习系统
  2. 内存卡删除的文件如何恢复?三个步骤解决
  3. Nginx-第一天--HTTP
  4. QFileInfo(文件信息)和临时文件
  5. python类的使用的生物学应用_Python 类的使用
  6. 轻轨列车 light rail train
  7. ipad2 越狱后安装slide enhancer 隐藏滑块解决方法总结
  8. 【线程、锁】什么是AQS(锁分类:自旋锁、共享锁、独占锁、读写锁)
  9. 中醫秘笈大公開---家家必備十良方
  10. android网页离线保存