网站浮动窗口 备忘

<div id="roll" style="z-index: 200000;text-align:right;">

<a href="http://www.gjj.dl.gov.cn/icms/null/null/ns:LHQ6LGY6LGM6NDAyODkyMDE1MTBlZDhkNzAxNTExZTM4ZTgxYjAxYzkscDosYTosbTo=/show.vsml" target="_blank">
<img title="网站窗口浮动" src="/icms/UserFiles/Content/xxxxx.jpg" style="width:250px;height:120px;">
</a>
<a style="display: block;color:#5e5e5e;height: 30px;#5e5e5e;font-size: 14px;width:250px;height:20px;padding-right:0 5px;" href="javascript:CloseDiv(‘roll‘)">关闭</a>
</div>
<script type="text/javascript">
var ggRoll = {
roll : document.getElementById("roll"),
speed : 20,
statusX : 0,
statusY : 0,
x : 100,
y : 300,
winW : document.documentElement.clientWidth - document.getElementById("roll").offsetWidth,
winH : document.documentElement.clientHeight - document.getElementById("roll").offsetHeight,
Go : function(){
this.roll.style.left=this.x+‘px‘;
this.roll.style.top=this.y+‘px‘;

this.x = this.x + (this.statusX? -1: 1)
if(this.x < 0) {this.statusX = 0}
if(this.x > this.winW) {this.statusX = 1}

this.y = this.y + (this.statusY? -1: 1)
if(this.y < 0) {this.statusY = 0}
if(this.y > this.winH) {this.statusY = 1}
}
}
var interval = setInterval("ggRoll.Go()", ggRoll.speed);
ggRoll.roll.onmouseover = function(){clearInterval(interval)};
ggRoll.roll.onmouseout = function(){interval = setInterval("ggRoll.Go()", ggRoll.speed)};

function CloseDiv(id){
document.getElementById(id).style.display="none";
//clearInterval(interval)
}

</script>

时间: 2024-10-13 09:45:51

网站浮动窗口 备忘的相关文章

IIS上架设https网站证书处理备忘

1. 免费SSL证书申请 https://www.startssl.com 教程:http://hxs.fd.fj.cn/?action=show&id=13 2. 证书转换 申请到的证书有两个关键文件(适用于openssl文本格式), xxx.key & xxx.crt,要在IIS上安装需要转换成pfx格式,转换命令: openssl pkcs12 -export -out server.pfx -inkey xxx.key -in xxx.crt 3. 证书安装 在IIS中,打开“服务

Java学习网站汇总【备忘】

Java学习网站http://www.javaxxz.com Java学习者论坛,资源非常多,适合初学者. http://www-900.ibm.com/developerWorks/cn/java/index.shtml IBM的JAVA专题——永远的蓝色巨人 http://www.huihoo.com 灰狐动力——Enterprise Open Source http://www.jdon.com J道——JAVA和J2EE解决之道 http://www.chinaunix.net Chin

本人小白,Java学习网站汇总【备忘】

Java学习网站http://www.javaxxz.com Java学习者论坛,资源非常多,适合初学者.http://www-900.ibm.com/developerWorks/cn/java/index.shtml IBM的JAVA专题--永远的蓝色巨人http://www.huihoo.com 灰狐动力--Enterprise Open Sourcehttp://www.jdon.com J道--JAVA和J2EE解决之道http://www.chinaunix.net ChinaUni

几个网站的备忘链接

http://golang.org/ http://pitch.csspiffle.com/ http://site.douban.com/106407/widget/notes/335509/note/247778936/ http://www.csdn.net/article/2014-03-25/2818964-web-application-frameworks-for-node-js 几个网站的备忘链接,布布扣,bubuko.com

【代码备忘】火狐浏览器插件xpi自动从网站下载安装的代码

欢迎加入我们的QQ群,无论你是否工作,学生,只要有c / vc / c++ 编程经验,就来吧!158427611 <!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&

【代码备忘】VC判断自己窗口的另一种方法

欢迎加入我们的QQ群,无论你是否工作,学生,只要有c / vc / c++ 编程经验,就来吧!158427611 FindWindow就不说了,这说 的是另一种:GetProp 代码也差不多: 查询... HWND hWndPrevious = ::GetWindow(::GetDesktopWindow(), GW_CHILD); while (::IsWindow(hWndPrevious)) { if (::GetProp(hWndPrevious, _FLAG)) { if (::IsI

[转]Windows环境下尝试安装并配置PHP PEAR备忘

转自:http://wangye.org/blog/archives/266/ 什么是PEAR 来自百度百科:PEAR 是PHP扩展与应用库(the PHP Extension and Application Repository)的缩写.它是一个PHP扩展及应用的一个代码仓库,简单地说,PEAR之于PHP就像是CPAN(Comprehensive Perl Archive Network)之于Perl. 由此可见PEAR是PHP代码的仓库,在这里可以找到很多有用的代码,避免我们重复写一些功能,

linux下常用命令备忘

转自:Linux 命令集锦 linux下查看监听端口对应的进程 # lsof -i:9000 # lsof -Pnl +M -i4 如果退格键变成了:"^h". 终端连接unix删除退格键,按住CTL键同时按delete Linux搜索 # find / -name "xxx.conf" 查看linux是32位还是64位的命令 #file /sbin/init #getconf LONG_BIT #getconf -a 在Linux和Windows下都可以用nslo

PHP设计模式之备忘模式

1.Norton Ghost的方便与问题 我们大多数win的用户都用过Norton Ghost,只要将目前系统备份一下生成镜像文件,等系统中毒或崩溃的时候,用Norton Ghost恢复一下就回到备份时候的样子了. 这个可以说就是备忘(Memento)模式的基本原理了,先备份,需要的时候恢复.因此备忘模式是比较好理解的. 但在实际应用中,如何正确的应用备忘模式,是需要注意的. 难道我们在word写文章的时候,先要Ghost备份一下所有的硬盘,一旦文章写错了,需要恢复,就用Ghost覆盖硬盘? 就