- 浏览: 747613 次
- 性别:
- 来自: 北京
文章分类
最新评论
-
梦行Monxin商城系统:
java网上商城与php网上商城比较 -
梦行Monxin商城系统:
java网上商城与php网上商城比较 -
任楚娴:
你好,请问html = nvl(html); 这句中的nvl( ...
java html串转换成文本串 -
u013246812:
,谢拉!
jQuery ui Dialog 讲解参数 -
大宝剑99:
...
前端优化
js:
var sheyMsg=function(box,options) {
this.box=this.g(box);
this.setOptions(options);
this.init();
}
sheyMsg.prototype={
ae:function(e,call) {
if(window.addEventListener)window.addEventListener(e,call,false);
else window.attachEvent("on"+e,call);
},
g:function(id) {return typeof(id)=="string"?document.getElementById(id):id; },
isFixed:!window.ActiveXObject || (navigator.userAgent.indexOf("MSIE 6")==-1 && document.compatMode=="CSS1Compat"),
setOptions:function(options) {
this.options={//默认配置
showDelay:10,//显示延时
autoHide:30,//自动隐藏时间,设置为0时,不自动隐藏
onShow:function(){},//显示后调用
onHide:function(){}//隐藏后调用
};
for(var o in options) {
this.options[o]=options[o];
}
},
hide:function() {//隐藏
var _top=this.box.clientHeight;
var o=this;
if(/ing$/.test(o.status))return;
o.status="hiding";
clearTimeout(o.tt);
o.t=setInterval(function() {
if(o.isFixed)
o.box.style.bottom=(-o.box.clientHeight+(--_top))+'px';
else
o.box.style.top=o.de.scrollTop+o.de.clientHeight-5-(--_top) +"px";
if(_top==-5) {
clearInterval(o.t);
o.status="hide";
o.box.style.display="none";
o.options.onHide();
}
},5);
},
show:function() {//显示
var _top=0;
var o=this;
if(/ing$/.test(o.status))return;
o.status="showing";
clearTimeout(o.tt);
o.box.style.display="block";
o.t=setInterval(function() {
if(o.isFixed)
o.box.style.bottom=(-o.box.clientHeight+(++_top))+"px";
else
o.box.style.top=(o.de.scrollTop+o.de.clientHeight-5-(++_top)) +"px";
if(_top==o.box.clientHeight) {
clearInterval(o.t);
o.status="show";
o.options.onShow();
var h=o.options.autoHide-0;
if(h) o.tt=setTimeout(function() {o.hide();},h*1000);
}
},1);
},
fixIE6:function() {//IE6 滚动定位
this.box.style.left=this.de.scrollLeft+this.de.clientWidth-this.box.clientWidth-2+"px";
if(this.status=="show") {
this.box.style.top=this.de.scrollTop+this.de.clientHeight-this.box.clientHeight-5+"px";
} else if(this.status=="hide") {
this.box.style.top=this.de.scrollTop+this.de.clientHeight+5+"px";
}
},
init:function() {
with(this.box.style) {
display="block";//显示之后才能取出宽度和高度
if(this.isFixed) {
position="fixed";
right="2px";
bottom=(-this.box.clientHeight-5)+"px";
} else {
position="absolute";
}
}
this.status="hide";
var o=this;
if(!this.isFixed) {
o.de=document.compatMode=="CSS1Compat"?document.documentElement:document.body;
var timer;
this.ae("resize",function() { clearTimeout(timer);timer=setTimeout(function(){o.fixIE6.call(o)},30);});
this.ae("scroll",function() { clearTimeout(timer);timer=setTimeout(function(){o.fixIE6.call(o)},30);});
this.fixIE6();//加载时指定位置
}
o.box.style.display="none";
o.tt=setTimeout(function() {o.show();},o.options.showDelay*1000);
}
}
====================
css:
.msg { width:240px;display:none; }
.pink .top,.pink .top .title,.pink .top span,.pink .bottom,.pink .bottom a {background:transparent url(images/msg_bg_pink.gif) no-repeat 0px 0px;}
.pink .center {background:url(images/center_bg_pink.gif) repeat-y;}
.blue .top,.blue .top .title,.blue .top span,.blue .bottom,.blue .bottom a {background:transparent url(images/msg_bg_blue.gif) no-repeat 0px 0px;}
.blue .center {background:url(images/center_bg_blue.gif) repeat-y;}
.msg .top{width:240px;height:25px;position:relative;}
.msg .top .title {background-position:-195px -70px;padding-left:30px;line-height:22px;width:100px;height:25px;}
.msg .top span {background-position:0px -70px;width:36px; height:17px;position:absolute;top:1px;left:198px;cursor:pointer;}
.msg .top span:hover {background-position:-43px -71px;}
.msg .center { width:240px;height:115px;}
.msg .center h3{color:#0c4e7c;text-align:center;line-height:23px;font-size:13px;}
.msg .center p{color: #0c4e7c;margin:0px 10px;line-height:20px;}
.msg .bottom {height:29px;background-position:0px -32px;}
.msg .bottom a {background-position:-120px -75px;padding-left:20px;margin:7px 10px;float:right;width:30px;height:20px;}
==================================
demo:
<!--sheyMsg start-->
<div class="msg pink" id="msgbox">
<div class="top">
<div class="title">CSDN News</div>
<span title="close" id="msgclose"></span>
</div>
<div class="center">
<h3>仿腾讯右下角消息提示</h3>
<p>showDalay:设置页面加载后显示时间延迟;<br />autoHide:显示后自动隐藏的时间,默认30秒,设置为0表示不自动隐藏;</p>
</div>
<div class="bottom"><a target="_blank" href="http://blog.csdn.net/sohighthesky/archive/2009/11/10/4795886.aspx">查看</a>
</div>
</div>
<!--sheyMsg end-->
var msg=new sheyMsg("msgbox",{
showDelay:2,//
onHide:function(){
btn.value="Show";
},
onShow:function() {
btn.value="Hide";
}
});
msg.show();
var sheyMsg=function(box,options) {
this.box=this.g(box);
this.setOptions(options);
this.init();
}
sheyMsg.prototype={
ae:function(e,call) {
if(window.addEventListener)window.addEventListener(e,call,false);
else window.attachEvent("on"+e,call);
},
g:function(id) {return typeof(id)=="string"?document.getElementById(id):id; },
isFixed:!window.ActiveXObject || (navigator.userAgent.indexOf("MSIE 6")==-1 && document.compatMode=="CSS1Compat"),
setOptions:function(options) {
this.options={//默认配置
showDelay:10,//显示延时
autoHide:30,//自动隐藏时间,设置为0时,不自动隐藏
onShow:function(){},//显示后调用
onHide:function(){}//隐藏后调用
};
for(var o in options) {
this.options[o]=options[o];
}
},
hide:function() {//隐藏
var _top=this.box.clientHeight;
var o=this;
if(/ing$/.test(o.status))return;
o.status="hiding";
clearTimeout(o.tt);
o.t=setInterval(function() {
if(o.isFixed)
o.box.style.bottom=(-o.box.clientHeight+(--_top))+'px';
else
o.box.style.top=o.de.scrollTop+o.de.clientHeight-5-(--_top) +"px";
if(_top==-5) {
clearInterval(o.t);
o.status="hide";
o.box.style.display="none";
o.options.onHide();
}
},5);
},
show:function() {//显示
var _top=0;
var o=this;
if(/ing$/.test(o.status))return;
o.status="showing";
clearTimeout(o.tt);
o.box.style.display="block";
o.t=setInterval(function() {
if(o.isFixed)
o.box.style.bottom=(-o.box.clientHeight+(++_top))+"px";
else
o.box.style.top=(o.de.scrollTop+o.de.clientHeight-5-(++_top)) +"px";
if(_top==o.box.clientHeight) {
clearInterval(o.t);
o.status="show";
o.options.onShow();
var h=o.options.autoHide-0;
if(h) o.tt=setTimeout(function() {o.hide();},h*1000);
}
},1);
},
fixIE6:function() {//IE6 滚动定位
this.box.style.left=this.de.scrollLeft+this.de.clientWidth-this.box.clientWidth-2+"px";
if(this.status=="show") {
this.box.style.top=this.de.scrollTop+this.de.clientHeight-this.box.clientHeight-5+"px";
} else if(this.status=="hide") {
this.box.style.top=this.de.scrollTop+this.de.clientHeight+5+"px";
}
},
init:function() {
with(this.box.style) {
display="block";//显示之后才能取出宽度和高度
if(this.isFixed) {
position="fixed";
right="2px";
bottom=(-this.box.clientHeight-5)+"px";
} else {
position="absolute";
}
}
this.status="hide";
var o=this;
if(!this.isFixed) {
o.de=document.compatMode=="CSS1Compat"?document.documentElement:document.body;
var timer;
this.ae("resize",function() { clearTimeout(timer);timer=setTimeout(function(){o.fixIE6.call(o)},30);});
this.ae("scroll",function() { clearTimeout(timer);timer=setTimeout(function(){o.fixIE6.call(o)},30);});
this.fixIE6();//加载时指定位置
}
o.box.style.display="none";
o.tt=setTimeout(function() {o.show();},o.options.showDelay*1000);
}
}
====================
css:
.msg { width:240px;display:none; }
.pink .top,.pink .top .title,.pink .top span,.pink .bottom,.pink .bottom a {background:transparent url(images/msg_bg_pink.gif) no-repeat 0px 0px;}
.pink .center {background:url(images/center_bg_pink.gif) repeat-y;}
.blue .top,.blue .top .title,.blue .top span,.blue .bottom,.blue .bottom a {background:transparent url(images/msg_bg_blue.gif) no-repeat 0px 0px;}
.blue .center {background:url(images/center_bg_blue.gif) repeat-y;}
.msg .top{width:240px;height:25px;position:relative;}
.msg .top .title {background-position:-195px -70px;padding-left:30px;line-height:22px;width:100px;height:25px;}
.msg .top span {background-position:0px -70px;width:36px; height:17px;position:absolute;top:1px;left:198px;cursor:pointer;}
.msg .top span:hover {background-position:-43px -71px;}
.msg .center { width:240px;height:115px;}
.msg .center h3{color:#0c4e7c;text-align:center;line-height:23px;font-size:13px;}
.msg .center p{color: #0c4e7c;margin:0px 10px;line-height:20px;}
.msg .bottom {height:29px;background-position:0px -32px;}
.msg .bottom a {background-position:-120px -75px;padding-left:20px;margin:7px 10px;float:right;width:30px;height:20px;}
==================================
demo:
<!--sheyMsg start-->
<div class="msg pink" id="msgbox">
<div class="top">
<div class="title">CSDN News</div>
<span title="close" id="msgclose"></span>
</div>
<div class="center">
<h3>仿腾讯右下角消息提示</h3>
<p>showDalay:设置页面加载后显示时间延迟;<br />autoHide:显示后自动隐藏的时间,默认30秒,设置为0表示不自动隐藏;</p>
</div>
<div class="bottom"><a target="_blank" href="http://blog.csdn.net/sohighthesky/archive/2009/11/10/4795886.aspx">查看</a>
</div>
</div>
<!--sheyMsg end-->
var msg=new sheyMsg("msgbox",{
showDelay:2,//
onHide:function(){
btn.value="Show";
},
onShow:function() {
btn.value="Hide";
}
});
msg.show();
发表评论
-
Chrome扩展程序-BES Blocker
2020-11-27 08:35 243## 使用说明 - Change the response ... -
全国最新行政区划代码(Tree)json数据以及地理数据
2020-11-11 21:23 381基于阿里提供的地理数据 http://datav.aliyun ... -
百度搜索api
2020-11-07 15:26 682<div class="iteye-blog- ... -
Puppeteer 说明记录
2020-11-06 10:52 640<div class="iteye-blo ... -
文本水印
2019-12-20 17:55 472打开控制台,copy如下代码: (functio ... -
unicode字符集特殊符号对应html/js/css符号
2019-04-24 14:46 783转自: http://www.cnblogs.com/cha ... -
网站灰度支持
2015-01-02 07:22 8841 <style>html {overflo ... -
js 端排序 获取td里边的内容去html串化
2014-09-26 18:12 865<script> function delHtml ... -
ie浏览器下的css expression使用
2014-03-06 16:39 1223针对ie浏览器有些情况下显示效果比较差,所以针对ie ... -
输入框自动填充效果 js
2013-12-28 15:58 6075<!doctype html> ... -
js 屏蔽form的onkeydown onkeyup onkeypress 的13按键
2013-07-11 10:49 1825js 屏蔽form的onkeydown onkeyup on ... -
Cookie path的设置
2013-02-21 10:58 1951cookie path 设置 IE对如下的co ... -
html5 (标签一览)
2012-10-16 19:22 1021html5 标签 按字母顺序排 ... -
一键分享腾讯微博,新浪微博等api(WEB 版)
2012-08-10 09:38 10432腾讯微博分享 <script type=" ... -
DOJO js 基本dom操作
2012-06-20 09:44 4619/** ** 基本的DOM操作只是用到了dojo的核 ... -
原始ajax api 操作
2012-04-12 18:00 1099String.prototype.trim = func ... -
js 动态 添加 删除 tr
2012-04-12 17:27 5764今天给新人出了一道题: dom 和 javascrip ... -
ie8下 vml
2012-04-01 13:51 1685近期在做web流程设计器,在ie7下没有问题,显示出来了,但是 ... -
flex vs html5
2011-12-18 18:09 2161何时使用HTML5,而不是Fl ... -
java毕业设计 计算机毕业设计 软件定制开发
2011-10-01 07:00 86工作室承接各种毕业设计以及软件定制开发。 java毕业设计 ...
相关推荐
本教程将深入探讨如何利用jQuery在页面的右下角创建一个动态的消息提示框。 ### 1. jQuery基础 jQuery是一个轻量级的库,它简化了JavaScript的DOM操作、事件处理和动画效果。它的语法简洁,使得开发者能够快速地...
根据给定的信息,本文将详细解释一个通过纯JavaScript技术实现在网页右下角显示提示框的方法。该技术可用于实现类似于CSDN网站右下角的消息提示功能。 ### 知识点解析 #### 1. 理解 `CLASS_MSN_MESSAGE` 类 `...
在JavaScript编程中,实现点击按钮后在屏幕右下角弹出消息通知提示框是一项常见的功能,主要用于向用户显示系统状态或操作反馈。本教程将详细讲解如何创建这种通知提示框,包括默认、成功、警告和危险四种不同类型的...
在本教程中,我们将探讨如何利用jQuery实现右下角的消息提示框功能,这在Web应用程序中非常常见,用于向用户显示通知、警告或确认信息。 首先,我们需要理解jQuery的核心概念。jQuery通过选择器来选取HTML元素,...
现在作web开发,常常遇到需要消息提醒功能,我在网上找了一个js右下角弹出提示消息的例子,用还是挺不错的,大家可以试试。
综上所述,创建一个类似QQ或MSN的页面右下角弹出消息提示框涉及到前端的CSS布局、JavaScript交互、ASP.NET后端数据传递以及用户体验设计等多个方面的知识。通过合理的代码组织和充分的测试,可以实现一个高效、易用...
"仿QQ右下角弹出消息框源码"提示我们,这个代码是按照QQ软件中消息提示框的样式和行为进行仿制的,可能会包括消息框的动画效果、颜色搭配、图标设计以及关闭按钮等元素。 【标签】"消息框,弹出,仿QQ,QQ消息框...
在网页开发中,有时我们需要向用户显示短暂的通知或者提示信息,这时右下角弹出的消息框就显得尤为重要。本文将详细讲解如何在JSP(JavaServer Pages)中实现右下角弹出消息框,以及结合jQuery进行更丰富的交互设计...
jQuery右下角消息提示框是一种常见的用户交互设计,它能够为用户提供实时反馈,增强用户体验。在Web开发中,jQuery库以其简洁的API和强大的功能深受开发者喜爱,而创建这种消息提示框是jQuery应用的一个实例。 首先...
jquery右下角提示框插件,很好用,有类似需求的同志可以下载下来看一下
总的来说,"jQuery右下角弹出提示框代码.zip"是一个实用的资源,它展示了如何利用jQuery和CSS实现一个动态、可定制的提示信息系统。对于开发者来说,这个代码不仅可以直接应用于项目,还可以作为学习自定义提示框...
在网页设计中,创建一个类似QQ或CSDN右下角的提示框是常见的功能,主要用于显示消息通知、广告信息或是交互反馈。这种提示框通常称为"气泡通知"或"浮层提示",它不干扰用户的主要操作,又能有效地传递信息。下面将...
【JS右下角悬浮提示框】是一种常见的网页交互设计元素,它主要利用JavaScript语言来实现。这个特效使得网站能够在右下角位置展示一种可以自由控制(最大化、最小化和关闭)的信息提示或广告内容,提高了用户体验和...
"jquery右下角提示框"是利用jQuery来实现的一种用户界面元素,通常用于向用户提供信息提示或者反馈。这种提示框位于页面的右下角,既不遮挡主要内容,又能引起用户的注意。 创建一个通用版本的"jquery右下角提示框...
在这个例子中,jQuery可能被用来动态更新这些坐标,以确保消息框始终出现在屏幕的右下角。 `jQuery的slideUp()`函数是实现消息框隐藏动画的关键。这是一个动画方法,它会将元素的height逐渐减小到0,从而“滑动”地...
总的来说,“右下角提示框控件”是用户界面设计中的一个重要组成部分,它的实现涉及到了消息管理、界面布局、动画设计、用户交互等多个方面的技术知识。理解和掌握这些技术,对于提升软件的用户体验有着积极的作用。
本项目名为"仿QQ右下角消息框代码",旨在实现一个与QQ应用相似的弹出消息提示功能。下面将详细阐述相关知识点。 1. **C#语言基础**: C#是微软公司推出的.NET框架的一部分,它结合了C++的性能和Java的简洁性。在本...
通过封装,开发者创建了一个功能模块,使得其他开发者无需理解底层实现,只需调用预定义的方法,就能轻松实现右下角提示框的功能,极大地提高了开发效率和代码的可维护性。 对于"超级傻瓜式的方法",这通常指的是...
在标题和描述中提到的“asp.net 网页右下角弹出消息提示对话框(最小化提示框时带有小图标闪烁效果)”,这是一种常见的交互设计,用于吸引用户的注意力,即使他们在浏览其他窗口或应用时也能注意到这些重要的消息。...
在JavaScript编程中,"右下角渐渐弹出框"是一种常见的用户交互设计,常用于显示通知、消息或者警告。这种效果通常通过CSS实现动画,配合JavaScript控制弹出框的显示和隐藏来完成。下面我们将详细探讨如何实现这样一...