jquery文字上下滚动的实现方法
程序员文章站
2022-08-09 16:22:58
代码如下:
//上下滚动
var textroll=function(){
$('#notice p:last').css({'height':'0px...
代码如下:
//上下滚动
var textroll=function(){
$('#notice p:last').css({'height':'0px','opacity': '0'}).insertbefore('#notice p:first').animate({'height':'35px','opacity': '1'}, 'slow', function() { $(this).removeattr('style');});
}
$(function(){
//触发上下文字滚动事件
var roll=setinterval('textroll()',4000);
$("#notice p").hover(function() {
clearinterval(roll);
}, function() {
roll = setinterval('textroll()', 4000)
});
});
上一篇: 餐饮类网站滑动导航
推荐阅读
-
php使用ffmpeg向视频中添加文字字幕的实现方法
-
android使用 ScrollerView 实现 可上下滚动的分类栏实例
-
jquery实现iframe自适应高宽的方法
-
php使用ffmpeg向视频中添加文字字幕的实现方法,
-
Android编程实现自动调整TextView字体大小以适应文字长度的方法
-
DevExpress实现为TextEdit设置水印文字的方法
-
Android编程实现为ListView创建上下文菜单(ContextMenu)的方法
-
PHP实现通过中文字符比率来判断垃圾评论的方法_PHP
-
一个用jquery写的判断div滚动条到底部的方法
-
Javascript/Jquery——简单定时器的多种实现方法