仿Discuz 公告特效!

简介: 代码 DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.

 

img_405b18b4b6584ae338e0f6ecaf736533.gif 代码
<! DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" >
< html  xmlns ="http://www.w3.org/1999/xhtml" >
< head >
< meta  http-equiv ="Content-Type"  content ="text/html; charset=gb2312"   />
< title > 打造兼容(IE,FF,Opera,Safari,Chrome)多浏览器的JS程序 </ title >
< style  type ="text/css" >
.cls_container
{ border : 1px solid #ccc ; width : 680px ; font-size : 12px ; height : 24px ; overflow : hidden ; }
.cls_container ul
{ list-style-type : none ; margin : 0 ; padding : 0 ; margin-left : 32px ; }
.cls_container ul li
{ height : 24px ; line-height : 24px ; width : 320px ; float : left ; display : inline ; }
</ style >
</ head >
< body >
< div  id ="myscroll"  class ="cls_container" >
 
< ul >
  
< li >< href ="#" > 微软和谷歌对浏览器的垄断会导致Web的私有化吗?  </ a ></ li >
  
< li >< href ="#" > Subversion高级应用:SVN的多种认证方式 </ a ></ li >
  
< li >< href ="#" > 年度总结:2008年Java工具 </ a ></ li >
  
< li >< href ="#" > 要不要把IT主导权还给业务人员?  </ a ></ li >
  
< li >< href ="#" > IT专家网08年回顾:开发语言与开发平台共舞  </ a ></ li >
  
< li >< href ="#" > 下一代网络业务融合 </ a ></ li >
  
< li >< href ="#" > 方正科技七大优势 打造全流程专业外包 </ a ></ li >
  
< li >< href ="#" > 08回顾:Oracle能否继续领跑者数据库市场?  </ a ></ li >
  
< li >< href ="#" > Web安全性问题的层次关系分析 </ a ></ li >
  
< li >< href ="#" > 从融合至存储 以太网成企业网络终极答案 </ a ></ li >
 
</ ul >
</ div >
< div  id ="showhint" ></ div >
< script  type ="text/javascript" >
function  $(element){
 
if (arguments.length > 1 ){
  
for ( var  i = 0 ,length = arguments.length,elements = [];i < length;i ++ ){
   elements.push($(arguments[i]));
  }
  
return  elements;
 }
 
if ( typeof  element == " string " ){
  
return  document.getElementById(element);
 }
else {
  
return  element;
 }
}
var  Class = {
 create:
function (){
  
return   function (){
   
this .initialize.apply( this ,arguments);
  }
 }
}
Function.prototype.bind
= function (object){
 
var  method = this ;
 
return   function (){
  method.apply(object,arguments);
 }
}
var  Scroll = Class.create();
Scroll.prototype
= {
 initialize:
function (element,height){
  
this .element = $(element);
  
this .element.innerHTML += this .element.innerHTML;
  
this .height = height;
  
this .maxHeight = this .element.scrollHeight / 2;
   this .counter = 0 ;
  
this .scroll();
  
this .timer = "" ;
  
this .element.onmouseover = this .stop.bind( this );
  
this .element.onmouseout = function (){ this .timer = setTimeout( this .scroll.bind( this ), 1000 );}.bind( this );
 },
 scroll:
function (){
  
if ( this .element.scrollTop < this .maxHeight){
   
this .element.scrollTop ++ ;
   
this .counter ++ ;
  }
else {
   
this .element.scrollTop = 0 ;
   
this .counter = 0 ;
  }
  
  
if ( this .counter < this .height){
   
this .timer = setTimeout( this .scroll.bind( this ), 20 );
  }
else {
   
this .counter = 0 ;
   
this .timer = setTimeout( this .scroll.bind( this ), 3000 );
  }
 },
 stop:
function (){
  clearTimeout(
this .timer);
 }
}
var  myscroll = new  Scroll( " myscroll " , 24 );
</ script >
</ body >
</ html >

 

 

目录
相关文章
|
4月前
|
小程序
仿qq音乐播放微信小程序模板源码
手机qq音乐应用小程序,在线音乐播放器微信小程序网页模板。包含:音乐歌曲主页、推荐、排行榜、搜索、音乐播放器、歌单详情等。
48 1
|
6月前
|
PHP 数据库 数据安全/隐私保护
帝国cms仿鳄鱼下载站网站源码(已测试)
帝国cms仿鳄鱼下载站网站源码(已测试)
123 10
|
6月前
|
前端开发 搜索推荐
帝国CMS自适应网址导航网站模板代码
帝国CMS自适应网址导航网站模板代码分享
80 2
|
11月前
|
前端开发 数据库
Discuz实现tab切换版块
昨天闲得没事,就去重构了整个discuz.htm的文件。但是, 并没有这么顺利,于是去了空间吐槽了一波。 最神奇地就是,早上打开本地,tab切换突然活了,思索了一下,大概是存缓的问题了吧。
47 0
|
前端开发
仿qq音乐官网部分静态页面
仿qq音乐官网部分静态页面
141 0
|
存储 容器
仿百度福袋红包界面
仿百度福袋红包界面
91 0
仿百度福袋红包界面
仿抖音注册界面制作
话说上次完成了仿抖音我的界面制作之后,今天抽空又把注册界面给做了,还是做了些小改动,将第三方登录去掉了 注册 还是老规矩直接奉上psd源码:仿抖音注册界面psd源码 个人博客https://myml666.
1272 0
|
JavaScript 前端开发
第65天:仿网易轮播图
仿网易轮播图 1、HTML部分 1 DOCTYPE html> 2 3 4 5 仿网易轮播图 6 7 8 9 10 11 12 13 14 ...
1250 0
|
JavaScript 前端开发
PHP+jQuery年会在线拍照抽奖
演示下载地址:http://www.erdangjiade.com/js/545.html 效果图: 遍历要抽奖人的头像(你可以把要抽奖的人的头像直接放在images文件下面) ...
954 0