Javascript의 매트릭스(및 펄리시) 배경 효과 :)
7927 단어 effectperljavascript
내 매트릭스 펄리쉬 배경! 😎 😎 😎
내 github 페이지를 확인하여 live preview 😀
그것은 here 또는 here에서 찾을 수 있는 작업에서 파생된 자바스크립트의 두 줄에 불과하므로 크레딧이 전혀 필요하지 않지만 더 멸시하게 보이도록 간단히 수정했습니다! 👍
(또는 p@r]i$% 원하시면 😀)
전체 코드 아래:
<html>
<head>
</head>
<body>
<!-- background animations -->
<div class="div_bg">
<canvas id="c"></canvas>
</div>
<script>
var c = document.getElementById("c");
var ctx = c.getContext("2d");
c.height = window.innerHeight;
c.width = window.innerWidth;
var txts = "~!@#$%^&*)(_-=+;:{}[]|\/<>,.";
txts = txts.split("");
var font_size = 12;
var columns = c.width / font_size;
var drops = [];
for (var x = 0; x < columns; x++) drops[x] = 1;
function draw() {
ctx.fillStyle = "rgba(255, 255, 255, 0.05)";
ctx.fillRect(0, 0, c.width, c.height);
ctx.fillStyle = "#000";
ctx.font = font_size + "px arial";
for (var i = 0; i < drops.length; i++) {
var text = txts[Math.floor(Math.random() * txts.length)];
ctx.fillText(text, i * font_size, drops[i] * font_size);
if (drops[i] * font_size > c.height || Math.random() > 0.98) drops[i] = 0;
drops[i]++;
}
}
setInterval(draw, 20);
</script>
</body>
</html>
Reference
이 문제에 관하여(Javascript의 매트릭스(및 펄리시) 배경 효과 :)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/thibaultduponchelle/matrix-and-perlish-background-effect-in-javascript-4hdg텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)