求一个网页右下角弹出窗口代码的JS代码
发布网友
发布时间:2024-10-05 08:18
我来回答
共3个回答
热心网友
时间:2024-10-05 09:55
这里有一个弹出框效果
能自定义定位并随屏滚动而不抖动
还可以设置居中和锁屏
里面有教程和源码
热心网友
时间:2024-10-05 09:58
<style type="text/css"> * { margin: 0px; padding: 0px; } html, body { height: 100%; } body { font-size: 14px; line-height: 24px;
热心网友
时间:2024-10-05 09:58
可以创建一个窗口,不知行不行,代码如下:
<html>
<head>
<title>windows</title>
</head>
<script type="text/javascript">
function ab(){
window.open ("img0.jpg", "newwindow2", "height=200, width=200, top=500, left=600,titlebar=no,toolbar=no,menubar=no, scrollbars=no, resizable=no, location=no, status=no");
}
function get_cookie(Name) {
var search = Name + "="
var returnvalue = "";
if (document.cookie.length > 0) {
offset = document.cookie.indexOf(search)
if (offset != -1) {
offset += search.length
end = document.cookie.indexOf(";", offset);
if (end == -1)
end = document.cookie.length;
returnvalue=unescape(document.cookie.substring(offset, end))
}
}
return returnvalue;
}
function loadpopup(){
if (get_cookie('popped')==''){
ab()
document.cookie="popped=yes"
}
}
</script>
<body onload="ab()">
</body>
</html>