黑客效果-流动式数字或文字效果

6 篇文章 0 订阅
2 篇文章 0 订阅

炫酷的黑客滚动效果怎么做?

其实没有想象中的那么难,要实现就一个canvas画布 + js 的事件以及数学逻辑,就可以实现,废话不多说先上效果图
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

html部分

<body>
  <canvas id="tutorial"></canvas>
  <script src="./下坠科技感.js"></script>
</body>

样式部分

  <style>
    canvas {
      position: fixed;
      top: 0;
      left: 0;
      background-color: black;
    }
  </style>

JS 主体部分

// 获取实例 ,设置画布
let canvas = document.querySelector("canvas");
let ctx = canvas.getContext("2d");
// 画布窗口大小设置 , devicePixelRatio是为了等比缩放保持清晰度
function init() {
  canvas.width = window.innerWidth * devicePixelRatio;
  canvas.height = window.innerHeight * devicePixelRatio;
}

init(); //打开画布

// 设置字体大小 字体
const fontSize = 15 * devicePixelRatio;
ctx.font = `${fontSize}px "微软雅黑"`;

// 获取有多少列
const colunmCount = Math.floor(canvas.width / fontSize);
// 
const charIndex = new Array(colunmCount).fill(0);

// 开始画
function draw() {
  ctx.fillStyle = 'rgba(0,0,0,0.1)'; // 遮罩层 淡出效果
  ctx.fillRect(0, 0, canvas.width, canvas.height); // 绘制一个填充的矩形 淡出效果
  ctx.fillStyle = '#00ff00'; //字体颜色
  ctx.textBaseline = 'top';
  ctx.textAlign = 'center';
  for (let i = 0; i < colunmCount; i++) {
    const text = generateRandomCharacter();
    const x = i * fontSize;
    const y = charIndex[i] * fontSize;
    ctx.fillText(text, x, y);  // 填充文本
    // 内容超出高度重置 ,未超出继续
    if (y > canvas.height && Math.random() > 0.99) {
      charIndex[i] = 0;
    } else {
      charIndex[i]++;
    }
  }
};

// 随机字符生成
function generateRandomCharacter() {
  // const characters = '123456789abcdefghijklmnopqrstuvwxyz'; // 可选的字符集合
  const characters = '01'; // 可选的字符集合
  const randomIndex = Math.floor(Math.random() * characters.length); // 生成随机索引
  return characters.charAt(randomIndex); // 返回随机字符
};
// 第一次执行
draw(); 
// 定时执行
setInterval(draw, 100);











评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值