Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
AresnLiang
inscode-blbl
提交
245236b9
I
inscode-blbl
项目概览
AresnLiang
/
inscode-blbl
与 Fork 源项目一致
Fork自
唯有杜康TM / VueJS
通知
1
Star
1
Fork
1
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
I
inscode-blbl
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
245236b9
编写于
5月 09, 2023
作者:
6
622eda98dfef6c4fdb84ccca
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Auto commit
上级
d7e9f69e
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
21 addition
and
22 deletion
+21
-22
src/App.vue
src/App.vue
+21
-22
未找到文件。
src/App.vue
浏览文件 @
245236b9
<
template
>
<canvas
ref=
"canvas"
/>
<!-- 创建一个canvas标签,并使用ref属性引用 -->
<canvas
ref=
"canvas"
/>
</
template
>
<
script
>
export
default
{
mounted
()
{
const
canvas
=
this
.
$refs
.
canvas
;
// 获取canvas标签的引用
const
ctx
=
canvas
.
getContext
(
"
2d
"
);
// 获取canvas上下文
const
canvas
=
this
.
$refs
.
canvas
;
const
ctx
=
canvas
.
getContext
(
"
2d
"
);
canvas
.
width
=
window
.
innerWidth
;
// 设置canvas的宽度等于窗口的宽度
canvas
.
height
=
window
.
innerHeight
;
// 设置canvas的高度等于窗口的高度
ctx
.
fillStyle
=
"
black
"
;
// 设置canvas的填充颜色为黑色
ctx
.
fillRect
(
0
,
0
,
canvas
.
width
,
canvas
.
height
);
// 以黑色填充整个canvas
canvas
.
width
=
window
.
innerWidth
;
canvas
.
height
=
window
.
innerHeight
;
ctx
.
fillStyle
=
"
black
"
;
ctx
.
fillRect
(
0
,
0
,
canvas
.
width
,
canvas
.
height
);
let
count
=
0
;
// 定义一个计数器
let
count
=
0
;
const
render
=
()
=>
{
// 定义一个渲染函数
count
++
;
// 计数器自增
ctx
.
fillStyle
=
`hsl(
${
count
%
360
}
, 100%, 50%)`
;
// 根据计数器的值给canvas设置渐变色
ctx
.
font
=
"
bold 200px sans-serif
"
;
// 设置canvas文字的样式
ctx
.
textAlign
=
"
center
"
;
// 设置canvas文字的水平对齐方式为居中
ctx
.
textBaseline
=
"
middle
"
;
// 设置canvas文字的垂直对齐方式为居中
ctx
.
fillText
(
"
CSDN
"
,
canvas
.
width
/
2
,
canvas
.
height
/
2
);
// 在canvas中央绘制文字
const
render
=
()
=>
{
count
+=
5
;
ctx
.
fillStyle
=
`hsl(
${
count
%
360
}
, 100%, 50%)`
;
ctx
.
font
=
"
bold 200px sans-serif
"
;
ctx
.
textAlign
=
"
center
"
;
ctx
.
textBaseline
=
"
middle
"
;
ctx
.
fillText
(
"
CSDN
"
,
canvas
.
width
/
2
,
canvas
.
height
/
2
);
requestAnimationFrame
(
render
);
// 不断地重绘canvas
requestAnimationFrame
(
render
);
};
render
();
// 调用渲染函数
render
();
},
};
</
script
>
<
style
>
/* 将 canvas 的定位设置为 fixed,使其始终覆盖整个窗口 */
canvas
{
position
:
fixed
;
top
:
0
;
left
:
0
;
width
:
100%
;
/* 将 canvas 的宽度设置为 100% */
height
:
100%
;
/* 将 canvas 的高度设置为 100% */
width
:
100%
;
height
:
100%
;
}
</
style
>
</
style
>
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录