zoukankan
html css js c++ java
推荐一个不错的浮动广告代码
<
script language
=
"
javascript
"
type
=
"
text/javascript
"
>
var
imagepath
=
"
http://learning.iwebor.com/kry/ad/ad.gif
"
var
imagewidth
=
160
//
这两行写图片的大小
var
imageheight
=
114
var
speed
=
3
;
var
imageclick
=
"
http://www.iwebor.com/
"
//
这里写点击图片连接到的地址
var
hideafter
=
0
var
isie
=
0
;
if
(window.navigator.appName
==
"
Microsoft Internet Explorer
"
&&
window.navigator.appVersion.substring(window.navigator.appVersion.indexOf(
"
MSIE
"
)
+
5
,window.navigator.appVersion.indexOf(
"
MSIE
"
)
+
8
)
>=
5.5
)
{
isie
=
1
;
}
else
{
isie
=
0
;
}
if
(isie)
{
var
preloadit
=
new
Image()
preloadit.src
=
imagepath
}
function
pop()
{
if
(isie)
{
x
=
x
+
dx;y
=
y
+
dy;
oPopup.show(x, y, imagewidth, imageheight);
if
(x
+
imagewidth
+
5
>
screen.width) dx
=-
dx;
if
(y
+
imageheight
+
5
>
screen.height) dy
=-
dy;
if
(x
<
0
) dx
=-
dx;
if
(y
<
0
) dy
=-
dy;
startani
=
setTimeout(
"
pop();
"
,
50
);
}
}
function
dismisspopup()
{
clearTimeout(startani)
oPopup.hide()
}
function
dowhat()
{
if
(imageclick
==
"
dismiss
"
)
dismisspopup()
else
window.open(imageclick);
}
if
(isie)
{
var
x
=
0
,y
=
0
,dx
=
speed,dy
=
speed;
var
oPopup
=
window.createPopup();
var
oPopupBody
=
oPopup.document.body;
oPopupBody.style.cursor
=
"
hand
"
oPopupBody.innerHTML
=
'
<IMG SRC="
'
+
preloadit.src
+
'
">
'
;
oPopup.document.body.onmouseover
=
new
Function(
"
clearTimeout(startani)
"
)
oPopup.document.body.onmouseout
=
pop
oPopup.document.body.onclick
=
dowhat
pop();
if
(hideafter
>
0
)
setTimeout(
"
dismisspopup()
"
,hideafter
*
1000
)
}
<
/
script>
查看全文
相关阅读:
GUI编程
网络编程
线程池详解_3
多线程详解_2
注解和反射_1
多线程详解_1
javaEE简要总结
MarkDown使用教程简单介绍
com.sun.xxx.utils不存在问题的解决
解决npm install安装慢的问题
原文地址:https://www.cnblogs.com/wmz/p/1313407.html
最新文章
libcudart.so.10.0: cannot open shared object file: No such file or directory
Centernet训练自己的数据
Anchor free--Centernet
AlignDet特征对齐:one-stage检测算法的改进
thundernet
pytorch:fold 和unfold
OCR
conda 添加清华源
【原创】开源BI领袖-SpagoBI5.X最详细的中文版介绍
原创教程:SpagoBI4.2汉化及配置Mysql数据库教程
热门文章
【原创】从零开始学SpagoBI5.X源码汉化编译
【转帖】ECLIPSE-JEE-LUNA-SR2官方汉化教程
【News】SpagoBI中国官方微信对外发布
【转帖】四种BI 开源工具介绍-SpagoBI,openI,JasperSoft,Pentaho
【转帖】自助式BI的崛起:三张图看清商业智能和大数据分析市场趋势
【转帖】Moodle平台的5个新玩法
【推荐】最新国外免费空间网站Hostinger
20个最漂亮的基于WordPress的企业网站
【转帖】驳Jan Baan关于BPM是ERP走向没落起点的说法
【狂神说Java】HTML5完整教学通俗易懂
Copyright © 2011-2022 走看看