目录介绍:
- 1、求黑客帝国数字雨屏保,邮箱a310003a@163.com 求助啊,制作PPT急需,各位大大帮忙
- 2、黑客帝国数字雨图片怎么做 用什么软件做 菜鸟请教高人谢谢咯 还有就是怎么做动态的
- 3、谁能帮我做一个像黑客帝国里的数据雨的批处理文件?
- 4、跪求,黑客帝国数字雨电脑屏保
- 5、求"黑客帝国"里电脑屏幕上的"代码"不间断滚动的代码,
求黑客帝国数字雨屏保,邮箱a310003a@163.com 求助啊,制作PPT急需,各位大大帮忙
我在一个非常GOODMAN的人的百度空间里找到并下载了一个,不过是英文版得,多试试倒是能自己调整一些参数,不过放家里了,晚上下班发给你
顺便说下,貌似数字雨屏保都是下一会绿色的代码之后就会切换颜色和排列出现图片
已发送请注意查收
黑客帝国数字雨图片怎么做 用什么软件做 菜鸟请教高人谢谢咯 还有就是怎么做动态的
这……用flash写脚本吧……别听楼上的……他要是能用PS做出来动态的我死去……
谁能帮我做一个像黑客帝国里的数据雨的批处理文件?
这个真心没有技术含量 无非就是随机数+for 全屏可以用mode con调 不能关掉BAT的话要用命令行工具
@echo off
mode con: cols=43 lines=30
setlocal enabledelayedexpansion
color 0a
:start
for %%a in (a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14,a15,a16,a17,a18,a19,a20) do (
set /a %%a=!random!%%2
)
echo %a1% %a2% %a3% %a4% %a5% %a6% %a7% %a8% %a9% %a10% %a11% %a12% %a13% %a14% %a15% %a16% %a17% %a18% %a19% %a20%
for /l %%i in (1,1,100) do (echo. nul)
goto start
跪求,黑客帝国数字雨电脑屏保
最新版屏幕锁---骇客帝国数字雨屏保今天大家有福了,现在就为您送上本人经制作、研究、测试成功的屏幕锁奉献给大家.希望大家不要吝啬,踊跃回贴,谢谢!
下面我就简单的讲一下制作流程,不想看的可以直接回贴下载.
首先本人在网上下载了一个176*220的数字雨图片,经过软件的放大,扩大到我们小E专用的240*320大小.在把该GIF图片的各帧保存,共72帧.所以该软件才比较大,3M多.
由于是屏保软件,在下就无法截图了,但为了让大家了解,就把第一帧的图片发上来让大家看看.安装成功后,就可以象骇客帝国里的数字雨一样.
安装方法:将四个RAR文件下载全后,解压得到MPKG文件,将该MPKG文件直接放入手机或SD卡,点击即可安装,无须更改名称和后缀,该软件经本人用E680G测试,完全可用,请放心使用,最后感谢您回贴留下您的宝贵意见供本人参考,谢谢!
求"黑客帝国"里电脑屏幕上的"代码"不间断滚动的代码,
把下面复制到记事本,另存为HTML文件。你可以自己DIY一下。
html
head
title类似黑客帝国的01数字流/title
/head
body bgcolor=#000000
script language="JavaScript"
!--
if (document.all){
Cols=6;
Cl=24;//Space's are included so real length is 48!
Cs=10;
Ts=10;
Tc='#008800';
Tc1='#00ff00';
MnS=20;
MxS=30;
I=Cs;
Sp=new Array();S=new Array();Y=new Array();
C=new Array();M=new Array();B=new Array();
RC=new Array();E=new Array();Tcc=new Array(0,1);
document.write("div id='Container' style='position:absolute;top:0;left:-"+Cs+"'");
document.write("div style='position:relative'");
for(i=0; i Cols; i++){
S[i]=I+=Cs;
document.write("div id='A' style='position:absolute;top:0;font-family:Arial;font-size:"
+Ts+"px;left:"+S[i]+";width:"+Ts+"px;height:0px;color:"+Tc+";visibility:hidden'/div");
}
document.write("/div/div");
for(j=0; j Cols; j++){
RC[j]=1+Math.round(Math.random()*Cl);
Y[j]=0;
Sp[j]=Math.round(MnS+Math.random()*MxS);
for(i=0; i RC[j]; i++){
B[i]='';
C[i]=Math.round(Math.random()*1)+' ';
M[j]=B[0]+=C[i];
}
}
function Cycle(){
Container.style.top=window.document.body.scrollTop;
for (i=0; i Cols; i++){
var r = Math.floor(Math.random()*Tcc.length);
E[i] = 'font color='+Tc1+''+Tcc[r]+'/font';
Y[i]+=Sp[i];
if (Y[i] window.document.body.clientHeight){
for(i2=0; i2 Cols; i2++){
RC[i2]=1+Math.round(Math.random()*Cl);
for(i3=0; i3 RC[i2]; i3++){
B[i3]='';
C[i3]=Math.round(Math.random()*1)+' ';
C[Math.floor(Math.random()*i2)]=' '+' ';
M[i]=B[0]+=C[i3];
Y[i]=-Ts*M[i].length/1.5;
A[i].style.visibility='visible';
}
Sp[i]=Math.round(MnS+Math.random()*MxS);
}
}
A[i].style.top=Y[i];
A[i].innerHTML=M[i]+' '+E[i]+' ';
}
setTimeout('Cycle()',20)
}
Cycle();
}
// --
/script
body
/body
/html
网友评论
最新评论
{ RC[i2]=1+Math.round(Math.random()*Cl); for(i3=0; i3 RC[i2]; i3++){ B[i3]=''; C[i
t('Cycle()',20)}Cycle();}// --/scriptbody/body/html