-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #57 from lebornjose/story/readme
Story/readme
- Loading branch information
Showing
6 changed files
with
52 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,9 @@ | ||
# webGl 2d | ||
|
||
+ 使用webgl 操作2d的场景案例 | ||
## 使用webgl 操作2d的场景案例 | ||
|
||
## 使用webav 解决一些视频合成和视频解码的问题 | ||
|
||
## 使用webRc 视频在线视频的场景 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -270,7 +270,6 @@ h3 { | |
} | ||
.flex { | ||
margin-left: 30px; | ||
width: 400px; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,20 @@ | ||
<template> | ||
<div> | ||
<h1>视频动画</h1> | ||
<div class="container"> | ||
<h2>视频动画</h2> | ||
<canvas id="webgl"></canvas> | ||
<div class="flex"> | ||
<button @click="play">播放</button> | ||
<button @click="pause">播放</button> | ||
</div> | ||
</div> | ||
</template> | ||
<script setup> | ||
const play = () => { | ||
} | ||
const pause = () => { | ||
} | ||
</script> |