本文目录一览:
- 1、黑客帝国--绿色字母雨代码--知道的进
- 2、请问怎样把图片处理成黑客帝国绿色代码版本的。我下了个Photoshop但不知怎么用
- 3、让电脑像黑客帝国一样滚绿码
- 4、给一串c代码,目的在cmd下背景是像黑客电影里的绿色,最好其他地方也做的想黑客一样
黑客帝国--绿色字母雨代码--知道的进
BODY
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标签~
请问怎样把图片处理成黑客帝国绿色代码版本的。我下了个Photoshop但不知怎么用
那的学呀,不学在知道咋用,给你推荐个教程,你要求高了就学《大师之路》赵鹏的视频讲座。他讲的比较细,就是时间有点长,要速成就上《硅谷动力》找祁连山的教程,讲的很快适合心急的人,不学光靠问肯定学不会。
让电脑像黑客帝国一样滚绿码
这种代码确实有,我曾经用过!就是cmd批处理代码,也可以其他语言,如果用其他语言编写没你说那个绿色字幕啥的,不管是什么代码写的都是那种清理垃圾!绿色的滚码也挺酷酷的!
别听别人瞎说,他们没有见识,我七年前就玩过这个cmd清理垃圾批处理。现在清理垃圾用杀毒软件就可以做到!没必要这种特技炫酷的!其实你玩其他也可以的,比如你真正的学一门黑客技术
给一串c代码,目的在cmd下背景是像黑客电影里的绿色,最好其他地方也做的想黑客一样
写在一开始
C++可以这样使用dos命令
system("color 2f");
color 2f
这里的2代表背景,F代表字色。你自己看下吧(下面是对应关系)
0=黑、1=蓝、2=绿、3=浅绿、4=红、5=紫、6=黄、7=白、8=灰、9=淡蓝、A=淡绿、B=淡浅绿、C=淡红、D=淡紫、E=淡黄、F=亮白