事先准备: 新建一个txt,后缀名改成cmd(或bat)里面写代码即可
声明: 如果有合适的炫酷代码会第一时间修改博客,喜欢该博客的记得订阅收藏哦!


修改博客内容:
第一次:增加代码

详见1.6和1.7代码

第二次:增加代码

详见1.8代码

第三次:修改错误代码

详见1.4
错误代码:mode con:cols=90 lines=90
错误原因:语法错误,意外的出现":"
修改之后:mode con cols=90 lines=90


vbs整人代码链接:https://blog.csdn.net/weixin_45445598/article/details/107771366


cmd炫酷代码大全

1.循环类

1.1.黑客王国

color a 
echo off
:123
echo 0101010010100101010101010101010101010101010101010101001010101
echo 1010101010010101010101001010101000010101001000010101010001000
echo 0000100100101001011010010010000101000101010100101010010010011
echo 1001010010010101001010101100010101101001010100011010010101010
goto 123

1.2.命令tree

Win+R打开运行,输入cmd,然后输入tree
如果想要炫酷的话就👇

color a
tree C:\

1.3.我是这条街,这条街,最靓的仔

echo off
:123
color a
echo 我是这条街,这条街,最靓的仔
color b
echo 我是这条街,这条街,最靓的仔
color c
echo 我是这条街,这条街,最靓的仔
color d
echo 我是这条街,这条街,最靓的仔
goto 123

1.4.数字点阵

之前的mode con:cols=90 lines=90是错的,已改正mode con cols=90 lines=90

echo off
mode con cols=90 lines=90
:123
color a
echo 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0
color b
echo  0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0
color c
echo 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0
color d
echo  0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0
goto 123

1.5.数字王国加强版

对不起啊,cmd肝不出来了,所以用html代替cmd
一样的,新建一个txt,里面写入代码,后缀名改为html即可

<!DOCTYPE html>
<head>
<meta charset="UTF-8"></meta>
<title>黑客帝国/title>
<style type=text/css>
.matrix{padding-right: 0px; padding-left: 0px; font-size: 10pt; padding-bottom: 0px; margin: 0px; width: 10px; padding-top: 0px; font-family: lucida console, courier, monotype; text-align: center}
</style>
</head>
<body>
<center>呵呵呵呵呵呵</center><br><center>

<SCRIPT language=JavaScript type=text/javascript>
var rows=11; 
var speed=50; 
var reveal=2; 
var effectalign="default" 
var w3c=document.getElementById && !window.opera;;
var ie45=document.all && !window.opera;
var ma_tab, matemp, ma_bod, ma_row, x, y, columns, ma_txt, ma_cho;
var m_coch=new Array();
var m_copo=new Array();
window.onload=function() {
 if (!w3c && !ie45) return
 var matrix=(w3c)?document.getElementById("matrix"):document.all["matrix"];
 ma_txt=(w3c)?matrix.firstChild.nodeValue:matrix.innerHTML;
 ma_txt=" "+ma_txt+" ";
 columns=ma_txt.length;
 if (w3c) {
 while (matrix.childNodes.length) matrix.removeChild(matrix.childNodes[0]);
 ma_tab=document.createElement("table");
 ma_tab.setAttribute("border", 0);
 ma_tab.setAttribute("align", effectalign);
 ma_tab.style.backgroundColor="#000000";
 ma_bod=document.createElement("tbody");
 for (x=0; x<rows; x++) {
 ma_row=document.createElement("tr");
 for (y=0; y<columns; y++) {
 matemp=document.createElement("td");
 matemp.setAttribute("id", "Mx"+x+"y"+y);
 matemp.className="matrix";
 matemp.appendChild(document.createTextNode(String.fromCharCode(160)));
 ma_row.appendChild(matemp);
 }
 ma_bod.appendChild(ma_row);
 }
 ma_tab.appendChild(ma_bod);
 matrix.appendChild(ma_tab);
 } else {
 ma_tab='<ta'+'ble align="'+effectalign+'" border="0" style="background-color:#000000">';
 for (var x=0; x<rows; x++) {
 ma_tab+='<t'+'r>';
 for (var y=0; y<columns; y++) {
 ma_tab+='<t'+'d class="matrix" id="Mx'+x+'y'+y+'">?</'+'td>';
 }
 ma_tab+='</'+'tr>';
 }
 ma_tab+='</'+'table>';
 matrix.innerHTML=ma_tab;
 }
 ma_cho=ma_txt;
 for (x=0; x<columns; x++) {
 ma_cho+=String.fromCharCode(32+Math.floor(Math.random()*94));
 m_copo[x]=0;
 }
 ma_bod=setInterval("mytricks()", speed);
}

function mytricks() {
 x=0;
 for (y=0; y<columns; y++) {
 x=x+(m_copo[y]==100);
 ma_row=m_copo[y]%100;
 if (ma_row && m_copo[y]<100) {
 if (ma_row<rows+1) {
 if (w3c) {
 matemp=document.getElementById("Mx"+(ma_row-1)+"y"+y);
 matemp.firstChild.nodeValue=m_coch[y];
 }
 else {
 matemp=document.all["Mx"+(ma_row-1)+"y"+y];
 matemp.innerHTML=m_coch[y];
 }
 matemp.style.color="#33ff66";
 matemp.style.fontWeight="bold";
 }
 if (ma_row>1 && ma_row<rows+2) {
 matemp=(w3c)?document.getElementById("Mx"+(ma_row-2)+"y"+y):document.all["Mx"+(ma_row-2)+"y"+y];
 matemp.style.fontWeight="normal";
 matemp.style.color="#00ff00";
 }
 if (ma_row>2) {
 matemp=(w3c)?document.getElementById("Mx"+(ma_row-3)+"y"+y):document.all["Mx"+(ma_row-3)+"y"+y];
 matemp.style.color="#009900";
 }
 if (ma_row<Math.floor(rows/2)+1) m_copo[y]++;
 else if (ma_row==Math.floor(rows/2)+1 && m_coch[y]==ma_txt.charAt(y)) zoomer(y);
 else if (ma_row<rows+2) m_copo[y]++;
 else if (m_copo[y]<100) m_copo[y]=0;
 }
 else if (Math.random()>0.9 && m_copo[y]<100) {
 m_coch[y]=ma_cho.charAt(Math.floor(Math.random()*ma_cho.length));
 m_copo[y]++;
 }
 }
 if (x==columns) clearInterval(ma_bod);
}

function zoomer(ycol) {
 var mtmp, mtem, ytmp;
 if (m_copo[ycol]==Math.floor(rows/2)+1) {

 for (ytmp=0; ytmp<rows; ytmp++) {
 if (w3c) {
 mtmp=document.getElementById("Mx"+ytmp+"y"+ycol);
 mtmp.firstChild.nodeValue=m_coch[ycol];
 }
 else {
 mtmp=document.all["Mx"+ytmp+"y"+ycol];
 mtmp.innerHTML=m_coch[ycol];
 }
 mtmp.style.color="#33ff66";
 mtmp.style.fontWeight="bold";
 }
 if (Math.random()<reveal) {
 mtmp=ma_cho.indexOf(ma_txt.charAt(ycol));
 ma_cho=ma_cho.substring(0, mtmp)+ma_cho.substring(mtmp+1, ma_cho.length);
 }
 if (Math.random()<reveal-1) ma_cho=ma_cho.substring(0, ma_cho.length-1);
 m_copo[ycol]+=199;
 setTimeout("zoomer("+ycol+")", speed);
 }
 else if (m_copo[ycol]>200) {
 if (w3c) {
 mtmp=document.getElementById("Mx"+(m_copo[ycol]-201)+"y"+ycol);
 mtem=document.getElementById("Mx"+(200+rows-m_copo[ycol]--)+"y"+ycol);
 }
 else {
 mtmp=document.all["Mx"+(m_copo[ycol]-201)+"y"+ycol];
 mtem=document.all["Mx"+(200+rows-m_copo[ycol]--)+"y"+ycol];
 }
 mtmp.style.fontWeight="normal";
 mtem.style.fontWeight="normal";
 setTimeout("zoomer("+ycol+")", speed);
 }
 else if (m_copo[ycol]==200) m_copo[ycol]=100+Math.floor(rows/2);
 if (m_copo[ycol]>100 && m_copo[ycol]<200) {
 if (w3c) {
 mtmp=document.getElementById("Mx"+(m_copo[ycol]-101)+"y"+ycol);
 mtmp.firstChild.nodeValue=String.fromCharCode(160);
 mtem=document.getElementById("Mx"+(100+rows-m_copo[ycol]--)+"y"+ycol);
 mtem.firstChild.nodeValue=String.fromCharCode(160);
 }
 else {
 mtmp=document.all["Mx"+(m_copo[ycol]-101)+"y"+ycol];
 mtmp.innerHTML=String.fromCharCode(160);
 mtem=document.all["Mx"+(100+rows-m_copo[ycol]--)+"y"+ycol];
 mtem.innerHTML=String.fromCharCode(160);
 }
 setTimeout("zoomer("+ycol+")", speed);
 }
}
// -->
</SCRIPT>
<div id=matrix>I love u</div>
</center>
</body>
</html>

1.6.cmd数字王国加强版

%random%表示随机的意思
随机100次即可啦

echo off
color 0a
:123
echo %random%%random%
%random%
%random%
%random%
%random%
%random%
%random%
%random%
%random%%random%%random%
%random%
%random%
%random%
%random%
%random%
%random%
%random%
%random%%random%%random%
%random%
%random%
%random%
%random%
%random%
%random%
%random%
%random%%random%%random%
%random%
%random%
%random%
%random%
%random%
%random%
%random%
%random%%random%%random%
%random%
%random%
%random%
%random%
%random%
%random%
%random%
%random%%random%%random%
%random%
%random%
%random%
%random%
%random%
%random%
%random%
%random%%random%%random%
%random%
%random%
%random%
%random%
%random%
%random%
%random%
%random%%random%%random%
%random%
%random%
%random%
%random%
%random%
%random%
%random%
%random%%random%%random%
%random%
%random%
%random%
%random%
%random%
%random%
%random%
%random%%random%%random%
%random%
%random%
%random%
%random%
%random%
%random%
%random%
%random%
goto 123

好吓人

1.7.红蓝刺眼

温馨提示:下面代码执行后不要盯屏幕太久哦

echo off
:123
color 4
echo 0101010101010101010101010101010101010101010101010101
color 1
echo 1010101010101010101010101010101010101010101010101010
color 4
echo 0101010101010101010101010101010101010101010101010101
color 1
echo 1010101010101010101010101010101010101010101010101010
goto 123
color 4
echo 0101010101010101010101010101010101010101010101010101
color 1
echo 1010101010101010101010101010101010101010101010101010
goto 123

1.8.爱心(锥子)图

失恋、单身Pass过去

::**以为我cmd不会批注,我……**
color a 
::**似乎这是一把锋利的锥子**
:123
color 4
echo   ******     *******
echo *********************
echo  *******************
echo   *****************
echo    ***************
echo     *************
echo      ***********
echo       *********
echo        *******
echo         *****
echo          ***
echo           *
color 1
echo   ******     *******
echo *********************
echo  *******************
echo   *****************
echo    ***************
echo     *************
echo      ***********
echo       *********
echo        *******
echo         *****
echo          ***
echo           *
goto 123

2.其他类

2.1.观看黑白星球大战

很简单啊,

telnettowel.blinkenlights.nl

但是注意,前提是要开启telnet
OKOKOK,我已经肝不出来了
肝的我的肝疼了
我:马化疼,我的肝好疼,能帮我化化疼嘛
马化疼:小伙子,该充钱了
以上5种cmd炫酷代码、1种html代码和一个cmd电影仅供大家参考,如有不足敬请谅解
8 8 6 ~

完结

Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐