欢迎来到代码驿站!

DOS/BAT

当前位置:首页 > 脚本语言 > DOS/BAT

hta实现涂鸦效果代码

时间:2021-05-20 09:28:59|栏目:DOS/BAT|点击:
复制代码 代码如下:

<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);     
             randDiv[i].style.height = Math.floor(Math.random() * 100);     
             randDiv[i].style.background = GetRandomColor();     
     }     
     setTimeout("Fun()", timer);     
}     
function GetRandomColor()     
{     
     var r = Math.floor(Math.random() * 255).toString(16);     
     var g = Math.floor(Math.random() * 255).toString(16);     
     var b = Math.floor(Math.random() * 255).toString(16);     
     r = r.length == 1 ? "0" + r : r;     
     g = g.length == 1 ? "0" + g : g;     
     b = b.length == 1 ? "0" + b : b;     
     return "#" + r + g + b;     
}     
</script>     
</head>     
<body>     
</body>     
</html>

木容涂鸦板(Moron Scratch) 可以在线生成一个在桌面上自动绘画的应用程序。
只需要你发挥想象绘制一副想要的图案,然后点击下载按键就可以得到一个很小的moron_scratch.exe的程序。
双击运行它,就能看到你的鼠标在桌面上自动画了起来 :)
地址

上一篇:dos命令 cd命令使用说明[图文说明]

栏    目:DOS/BAT

下一篇:Ping命令详解 精简实用

本文标题:hta实现涂鸦效果代码

本文地址:http://www.codeinn.net/misctech/125126.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有