<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>canvas艺术字-扩展</title>
<style>
html{height: 100%;overflow: hidden;}
body{height: 100%;margin: 0;}
#test{
background: #000;
}
</style>
</head>
<body>
<canvas id="test"></canvas>
<script>
const cvs=document.getElementById('test');
//canvas充满窗口
cvs.width=window.innerWidth;
cvs.height=window.innerHeight;
//画笔
const ctx=cvs.getContext('2d');
//颜色数组
const colors=['red','yellow'];
/*文字内容*/
const text='学习最高尚';
/*文字位置*/
const [x,y]&#
canvas艺术字-扩展-闪烁效果
最新推荐文章于 2023-10-19 15:32:38 发布