首页 > 编程 > HTML > 正文

hta实现涂鸦效果代码

2024-08-26 00:15:48
字体:
来源:转载
供稿:网友
代码如下:
<html>     
<head>     
<hta:APPLICATION     
CAPTION="no"     
SCROLL="no"     
SHOWINTASKBAR="no"     
INNERBORDER="no"     
CONTEXTMENU="no"     
BORDER="none"     
SINGLEINSTANCE="yes"     
WINDOWSTATE="maximize"     
>     
<title></title>     
<script>     
var timer = 100;     
var randDiv = new Array(100);     
window.onload = function()     
{     
     for(var i = 0; i < randDiv.length; i++)     
     {     
             randDiv[i] = document.createElement("DIV");     
             randDiv[i].style.cssText = "filter:progid:DXImageTransform.Microsoft.Alpha(opacity=50);";     
             randDiv[i].style.position = "absolute";     
             randDiv[i].style.background = GetRandomColor();     
             document.body.appendChild(randDiv[i]);     
     }     
     Fun();     
}     
function Fun()     
{     
     for(var i = 0; i < randDiv.length; i++)     
     {     
             randDiv[i].style.top = Math.floor(Math.random() * window.screen.height);     
             randDiv[i].style.left = Math.floor(Math.random() * window.screen.width);     
             randDiv[i].style.width = Math.floor(Math.random() * 100);     
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表