直播平台搭建源码,canvas 画一条波浪线 进度条
直播平台搭建源码,canvas 画一条波浪线 进度条
<template>
<view>
<canvas :style="{'width': width + 'rpx','height': height + 'rpx','backgroundColor': '#d2d8d2'}"
canvas-id="firstCanvas" id="firstCanvas"></canvas>
</view>
</template>
<script>
export default {
data() {
return {
ctx: null,
width: 600,
height: 400,
step: 2,
stepHeight: -60,
trigger: true
}
},
mounted() {
this.ctx = uni.createCanvasContext('firstCanvas', this)
//this.drawWave()
//this.drawWave()
this.moveWave()
},
computed: {
canvasWidth() {
return uni.upx2px(this.width)
},
canvasHeight() {
return uni.upx2px(this.height)
},
stepWave() {
return uni.upx2px(this.canvasWidth) / this.step
},
stepWaveHeight() {
return uni.upx2px(this.stepHeight)
},
canvasCenter() {
return {
x: this.canvasWidth / 2,
y: this.canvasHeight / 2
}
}
},
methods: {
//计算位移 波浪高度的值
moveWave() {
let offset = -this.stepWave * 2
setInterval(() => {
offset++
if (offset >= 0) {
offset = -this.stepWave * 2
}
if (this.stepHeight > -10) {
this.trigger = true
}
if (this.stepHeight < -50) {
this.trigger = false
}
if (this.trigger) {
this.stepHeight -= 0.2
} else {
this.stepHeight += 0.2
}
this.drawWave(offset)
}, 10)
},
drawWave(offset) {
// 遮罩开始
this.ctx.clearRect(0, 0, this.canvasWidth, this.canvasHeight);
this.ctx.save();
this.ctx.beginPath();
this.ctx.fillStyle = '#d5ffc5'
this.ctx.arc(this.canvasCenter.x, this.canvasCenter.y, 100, 0, Math.PI * 2, false);
this.ctx.closePath();
this.ctx.fill();
// this.ctx.setStrokeStyle("#d5ffc5")
// this.ctx.stroke();
this.ctx.clip();
//this.ctx.restore()
// 遮罩结束
this.ctx.beginPath()
//线条起点
this.ctx.moveTo(0 + offset, this.canvasCenter.y); //宽高
// this.ctx.setStrokeStyle("#002ae6") //颜色
this.ctx.setLineWidth(1)
for (let i = 0; i < this.step * 3; i++) {
if (i % 2 == 0) {
this.ctx.quadraticCurveTo(this.stepWave * (i) + this.stepWave / 2 + offset, this.canvasCenter.y + this
.stepWaveHeight, this.stepWave * (i + 1) + offset, this.canvasCenter.y)
} else {
this.ctx.quadraticCurveTo(this.stepWave * (i) + this.stepWave / 2 + offset, this.canvasCenter.y - this
.stepWaveHeight, this.stepWave * (i + 1) + offset, this.canvasCenter.y)
}
}
this.ctx.lineTo(this.stepWave * (this.step * 2 + 3) + offset, this.canvasHeight)
this.ctx.lineTo(0 + offset, this.canvasHeight)
this.ctx.closePath()
let grad = this.ctx.createLinearGradient(0, 0, 0, this.canvasHeight);
grad.addColorStop(0, '#1e92ea')
grad.addColorStop(1, '#2C405A')
// this.ctx.setFillStyle('#3cee06')
this.ctx.setFillStyle(grad)
this.ctx.fill()
this.ctx.restore();
//this.ctx.strokeStyle = "red"
//this.ctx.stroke()
this.ctx.draw()
},
}
}
</script>
<style scoped>
.canvas-view {}
</style>
以上就是 直播平台搭建源码,canvas 画一条波浪线 进度条,更多内容欢迎关注之后的文章
直播平台搭建源码,canvas 画一条波浪线 进度条的更多相关文章
- WEB前端开发学习:源码canvas 雪
WEB前端开发学习:源码canvas 雪 双旦节要到了,程序员们为了响应气氛,特别用代码制作了动态雪花,WEB前端开发学习的初学者们一起跟着案例做一遍吧! <!DOCTYPE html> ...
- Linux平台下源码安装mysql多实例数据库
Linux平台下源码安装mysql多实例数据库[root@linux-node1 ~]# netstat -tlunp | grep 330tcp6 0 0 :::3306 :::* LISTEN 6 ...
- Hadoop学习笔记(10) ——搭建源码学习环境
Hadoop学习笔记(10) ——搭建源码学习环境 上一章中,我们对整个hadoop的目录及源码目录有了一个初步的了解,接下来计划深入学习一下这头神象作品了.但是看代码用什么,难不成gedit?,单步 ...
- Android8.1 MTK平台 SystemUI源码分析之 网络信号栏显示刷新
SystemUI系列文章 Android8.1 MTK平台 SystemUI源码分析之 Notification流程 Android8.1 MTK平台 SystemUI源码分析之 电池时钟刷新 And ...
- 【Java】用IDEA搭建源码阅读环境
用IDEA搭建源码阅读环境 参考自CodeSheep的Mac源码环境搭建, https://www.bilibili.com/video/BV1V7411U78L 但是实际上在Windows搭建的差别 ...
- 部署zabbix监控平台(源码安装)
案例:部署Zabbix监控平台 1 问题 本案例要求部署一台Zabbix监控服务器,一台被监控主机,为进一步执行具体的监控任务做准备: 安装LNMP环境 源码安装Zabbix 安装监控端主机,修改基本 ...
- Android 音视频深入 十六 FFmpeg 推流手机摄像头,实现直播 (附源码下载)
源码地址https://github.com/979451341/RtmpCamera/tree/master 配置RMTP服务器,虽然之前说了,这里就直接粘贴过来吧 1.配置RTMP服务器 这个我不 ...
- LNMP搭建 源码包
LNMP源码包搭建 linux CentOS-6.5-x86_64-bin-DVD1 nginx 版本1.8.0 下载地址:http://nginx.org/en/download.htm ...
- Windows平台下源码分析工具
最近这段时间在阅读 RTKLIB的源代码,目前是将 pntpos.c文件的部分看完了,准备写一份文档记录下这些代码的用处.处理过程.理论公式来源.注意事项,自己还没有弄明白的地方.目前的想法是把每一个 ...
- Netty环境搭建 (源码死磕2)
[正文]netty源码 死磕2: 环境搭建 本小节目录 1. Netty为什么火得屌炸天? 1.1. Netty是什么? 1.2. Netty火到什么程度呢? 1.3. Netty为什么这么火? 2 ...
随机推荐
- SpringCloud 小知识和历史
六Spring Cloud 回顾之前的: javaSE 数据库 前端 Servlet HTTP Mybatis Spring SpringMVC SpringBoot Dubbo.Zookeeper. ...
- 【Go语言基础】slice
一.概述 数组(Array)的长度在定义之后无法再次修改:数组是值类型,每次传递都将产生一份副本. 显然这种数据结构无法完全满足开发者的真实需求.Go语言提供了数组切片(slice)来弥补数组的不足. ...
- 加密,各种加密,耙梳加密算法(Encryption)种类以及开发场景中的运用(Python3.10)
不用说火爆一时,全网热议的Web3.0区块链技术,也不必说诸如微信支付.支付宝支付等人们几乎每天都要使用的线上支付业务,单是一个简简单单的注册/登录功能,也和加密技术脱不了干系,本次我们耙梳各种经典的 ...
- mysql怎么设计库、设计表
一. 设计表/库 设计思想就是要分析表每个字段的具体参数,包括但不限于以下几点: 约束? NOT NULL, PRIMARY KEY, UNIQUE KEY, DEFAULT, FOREIGN KEY ...
- JZOJ 3281. 【GDOI2013】字母连接
\(\text{Solution}\) 一眼不会,限制有点多... 那就网络流 发下确实是很简单的建图 枚举起点集合 拆点后就很好满足限制了 \(\text{Code}\) #include < ...
- JZOJ 2022.02.10【提高组】模拟总结
\(\text{简要题解}\) \(\text{GDOI2012}\) 的题 不得不说当年的题做起来真的很不爽 整体看起来就是数据结构+博弈论+宽搜+背包dp优化 考场上 \(T1\) 十分钟解决过了 ...
- JZOJ 3207.Orthogonal Anagram
\(\text{Problem}\) 给出一个字符串,求经过重新排列的另一个字典序最小的字符串,满足:相同的位置上 原串与结果串的字符不同.不存在则输出空串. \(\text{Solution}\) ...
- CPU AMX 详解
CPU AMX 详解 CPU AMX 详解 概述 算力如何 问题定义 AVX如何解决矩阵乘问题 AMX如何解决矩阵乘问题 如何实现的 计算部分 数据部分 路才开始 概述 2016 年开始,随着 NV ...
- 【译】.NET 7 中的性能改进(六)
原文 | Stephen Toub 翻译 | 郑子铭 矢量化 (Vectorization) SIMD,即单指令多数据 (Single Instruction Multiple Data),是一种处理 ...
- DIV 阴影
<div class="div">111</div> .div { width:200px; height:200px; box-shadow: 0 0 1 ...