hta實現(xiàn)涂鴉效果代碼
發(fā)布日期:2021-12-23 00:22 | 文章來源:腳本之家
復制代碼 代碼如下:
<html>
<head>
<hta:APPLICATION
CAPTION="no"
SCROLL="no"
SHOWINTASKBAR="no"
INNERBORDER="no"
CONTEXTMENU="no"
BORDER="none"
SINGLEINSTANCE="yes"
WINDOWSTATE="maximize"
>
<title></title>
<script>
vartimer=100;
varrandDiv=newArray(100);
window.onload=function()
{
for(vari=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();
}
functionFun()
{
for(vari=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);
}
functionGetRandomColor()
{
varr=Math.floor(Math.random()*255).toString(16);
varg=Math.floor(Math.random()*255).toString(16);
varb=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>
木容涂鴉板(MoronScratch)可以在線生成一個在桌面上自動繪畫的應用程序。
只需要你發(fā)揮想象繪制一副想要的圖案,然后點擊下載按鍵就可以得到一個很小的moron_scratch.exe的程序。
雙擊運行它,就能看到你的鼠標在桌面上自動畫了起來:)
地址
版權聲明:本站文章來源標注為YINGSOO的內(nèi)容版權均為本站所有,歡迎引用、轉(zhuǎn)載,請保持原文完整并注明來源及原文鏈接。禁止復制或仿造本網(wǎng)站,禁止在非www.sddonglingsh.com所屬的服務器上建立鏡像,否則將依法追究法律責任。本站部分內(nèi)容來源于網(wǎng)友推薦、互聯(lián)網(wǎng)收集整理而來,僅供學習參考,不代表本站立場,如有內(nèi)容涉嫌侵權,請聯(lián)系alex-e#qq.com處理。
相關文章