代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
JS
】
网站顶部横栏提示层带关闭功能
作者:
高爷爷
/ 发布于
2012/8/21
/
605
网站顶部横栏提示层带关闭功能
<div><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "<a href="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd</a>"> <html xmlns="<a href="http://www.w3.org/1999/xhtml">http://www.w3.org/1999/xhtml</a>"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>js页面提示广告效果-<title> <style> body{font:12px/16px arial;margin:0} #TopTipHolder{height:0;overflow:hidden;position:relative} #TopTip{height:35px;line-height:35px;text-align:center;background:#FC0} #TopTipClose{width:85px;height:19px;background:url(<a href="http://www.iiwnet.com/images/jstx/close.gif">http://www.iiwnet.com/images/jstx/close.gif</a>) no-repeat;position:absolute;right:10px;top:10px} </style> </head> <body> <div id="TopTipHolder"><div id="TopTip">网页特效代码 网站顶部头部提示广告JS效果</div><div id="TopTipClose" title="关闭"></div></div> <script> /* * 页面顶部提示栏效果(TopTipEffect) * * author: 爱微网 * version: 1.0.0 * @param {string} id tip提示标签id * @param {string} holderId 父标签 * @param {bool} expand 展开/收起 * @param {string} step 每次移动步长 * @param {object} speed 移动速度 */ var TopTipEffect = function(id, holderId, expand, step, speed){ this.obj = document.getElementById(id); this.holder = document.getElementById(holderId); this.step = step; this.speed = speed; this.expand = expand; this.maxH = this.obj.offsetHeight; this.moveT = null; this.moving = false; this.tempH = expand ? 0 : this.maxH; } TopTipEffect.prototype = { play : function(){ if(this.moving) return; if(this.holder.offsetHeight > this.maxH) return; var _this = this; this.moveT = setInterval(function(){_this.move()}, _this.speed); }, move : function(){ this.moving = true; if(this.expand){ this.tempH += this.step; if(this.tempH > this.maxH){ if((this.tempH - this.maxH) >= this.step){ this.expand = false; this.moving = false; clearInterval(this.moveT); return; }else{ this.tempH = this.maxH; } } }else{ this.tempH -= this.step; if(this.tempH < 0){ if(-this.tempH >= this.step){ this.expand = true; this.moving = false; clearInterval(this.moveT); return; }else{ this.tempH = 0; } } } this.holder.style.height = this.tempH + "px"; this.holder.scrollTop = this.maxH - this.tempH; } } var mytip = new TopTipEffect("TopTip", "TopTipHolder", true, 1, 10); mytip.play(); //右上角关闭按钮点击 document.getElementById("TopTipClose").onclick = function(){ mytip.play(); } </script> </body> </html></div>
试试其它关键字
顶部横栏提示层
同语言下
.
Jquery搜索框获取回车事件
.
H5页面添加倒计时,然后自动跳转
.
通过user-agent判断h5页面是在哪个手机App(QQ、微信
.
nginx 禁止未绑定的域名访问
.
JavaScript 获取按键,并屏蔽系统 Window 事件
.
H5之只允许微信浏览器打开,禁止从外部浏览器访问
.
微信打开网址添加在浏览器中打开提示的办法
.
实现JS复制、粘贴,Chrome/Firefox下可用
.
video视频播放,play()、pause()、duration时长、onen
.
HTML5实现MP3上传前的预览和播放时长的获取
可能有用的
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
.
处理大图片在缩略图时的展示
高爷爷
贡献的其它代码
(
3
)
.
取得文件扩展名
.
网站顶部横栏提示层带关闭功能
.
PHP上传图片自动加水印
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3