|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
asp,你就只能等着微软给你解决,它不乐意你就只好悲催。而且asp跑在windows服务器上,windows服务器跟linux比起来简直弱爆了!链接在Web中常常碰着链接提醒笔墨效果,就是当鼠标经由URL链接时,立即弹出一个提醒层(DIV),提醒链接内容等等相干笔墨.固然晓得是用埋没DIV完成的,不外一向不晓得怎样弄.今天搜到一个JS文件,能够轻松弄定.帖出来,保藏一下.
JS文件代码以下(mouse_on_title.js):
<!--
//***********默许设置界说.*********************
tPopWait=50;//停止tWait豪秒后显现提醒。
tPopShow=6000;//显现tShow豪秒后封闭提醒
showPopStep=20;
popOpacity=95;
fontcolor="#000000";
bgcolor="#EDEDED";
bordercolor="#007db5";
//***************外部变量界说*****************
sPop=null;curShow=null;tFadeOut=null;tFadeIn=null;tFadeWaiting=null;
document.write("<styletype=text/CSSid=defaultPopStyle>");
document.write(".cPopText{background-color:"+bgcolor+";color:"+fontcolor+";border:1px"+bordercolor+"solid;font-color:font-size:12px;padding-right:4px;padding-left:4px;height:20px;padding-top:2px;padding-bottom:2px;filter:Alpha(Opacity=0)}");
document.write("</style>");
document.write("<divid=dypopLayerstyle=position:absolute;z-index:1000;class=cPopText></div>");
functionshowPopupText(){
varo=event.srcElement;
MouseX=event.x;
MouseY=event.y;
if(o.alt!=null&&o.alt!=""){o.dypop=o.alt;o.alt=""};
if(o.title!=null&&o.title!=""){o.dypop=o.title;o.title=""};
if(o.dypop!=sPop){
sPop=o.dypop;
clearTimeout(curShow);
clearTimeout(tFadeOut);
clearTimeout(tFadeIn);
clearTimeout(tFadeWaiting);
if(sPop==null||sPop==""){
dypopLayer.innerHTML="";
dypopLayer.style.filter="Alpha()";
dypopLayer.filters.Alpha.opacity=0;
}
else{
if(o.dyclass!=null)popStyle=o.dyclass
elsepopStyle="cPopText";
curShow=setTimeout("showIt()",tPopWait);
}
}
}
functionshowIt(){
dypopLayer.className=popStyle;
dypopLayer.innerHTML=sPop;
popWidth=dypopLayer.clientWidth;
popHeight=dypopLayer.clientHeight;
if(MouseX+12+popWidth>document.body.clientWidth)popLeftAdjust=-popWidth-24
elsepopLeftAdjust=0;
if(MouseY+12+popHeight>document.body.clientHeight)popTopAdjust=-popHeight-24
elsepopTopAdjust=0;
dypopLayer.style.left=MouseX+12+document.body.scrollLeft+popLeftAdjust;
dypopLayer.style.top=MouseY+12+document.body.scrollTop+popTopAdjust;
dypopLayer.style.filter="Alpha(Opacity=0)";
fadeOut();
}
functionfadeOut(){
if(dypopLayer.filters.Alpha.opacity<popOpacity){
dypopLayer.filters.Alpha.opacity+=showPopStep;
tFadeOut=setTimeout("fadeOut()",1);
}
else{
dypopLayer.filters.Alpha.opacity=popOpacity;
tFadeWaiting=setTimeout("fadeIn()",tPopShow);
}
}
functionfadeIn(){
if(dypopLayer.filters.Alpha.opacity>0){
dypopLayer.filters.Alpha.opacity-=1;
tFadeIn=setTimeout("fadeIn()",1);
}
}
document.onmou搜索引擎优化ver=showPopupText;
-->
使用的时分,在页面的<head></head>之间到场:
<SCRIPTlanguage=javascriptsrc="mouse_on_title.js"></SCRIPT>
在必要提醒层的链接中到场title属性,好比:
//<ahref=”方针”title=”提醒笔墨内容”>测试</a>
实在假如不加上述JS文件,提醒层效果也是能够出来的.就是速率对照慢,提醒层效果对照单调罢了.
</p>SQLServer是基于服务器端的中型的数据库,可以适合大容量数据的应用,在功能上管理上也要比Access要强得多。在处理海量数据的效率,后台开发的灵活性,可扩展性等方面强大。 |
|