国产精品天干天干,亚洲毛片在线,日韩gay小鲜肉啪啪18禁,女同Gay自慰喷水

歡迎光臨散文網(wǎng) 會(huì)員登陸 & 注冊(cè)

canvas煙花動(dòng)畫(huà)

2023-07-12 16:23 作者:無(wú)骨犄角  | 我要投稿


canvas煙花

<!DOCTYPE html>
<html lang="en">

<head>
 ? ?<meta charset="UTF-8">
 ? ?<meta http-equiv="X-UA-Compatible" content="IE=edge">
 ? ?<meta name="viewport" content="width=device-width, initial-scale=1.0">
 ? ?<title>Document</title>
 ? ?<style>
 ? ? ? ?* {
 ? ? ? ? ? ?margin: 0;
 ? ? ? ? ? ?padding: 0;
 ? ? ? ?}

 ? ? ? ?body {
 ? ? ? ? ? ?background: black;
 ? ? ? ? ? ?display: flex;
 ? ? ? ? ? ?justify-content: center;
 ? ? ? ? ? ?align-items: center;
 ? ? ? ? ? ?width: 100%;
 ? ? ? ? ? ?height: 100vh;
 ? ? ? ?}

 ? ? ? ?canvas {
 ? ? ? ? ? ?position: relative;
 ? ? ? ?}
 ? ?</style>
</head>

<body>
 ? ?<canvas id="canvas"></canvas>

 ? ?<script>
 ? ? ? ?var canvas = document.getElementById("canvas")
 ? ? ? ?canvas.width = window.innerWidth
 ? ? ? ?canvas.height = window.innerHeight
 ? ? ? ?var ctx = canvas.getContext("2d")
 ? ? ? ?var fireworksArray = []
 ? ? ? ?var particlesArray = []

 ? ? ? ?// 煙花綻放
 ? ? ? ?class Particle {
 ? ? ? ? ? ?constructor(x, y, color) {
 ? ? ? ? ? ? ? ?this.x = x
 ? ? ? ? ? ? ? ?this.y = y
 ? ? ? ? ? ? ? ?this.c = color
 ? ? ? ? ? ? ? ?this.vx = (0.5 - Math.random()) * 100
 ? ? ? ? ? ? ? ?this.vy = (0.5 - Math.random()) * 100
 ? ? ? ? ? ? ? ?this.age = Math.random() * 100 | 0
 ? ? ? ? ? ?}
 ? ? ? ? ? ?update() {
 ? ? ? ? ? ? ? ?this.x += this.vx / 20
 ? ? ? ? ? ? ? ?this.y += this.vy / 20
 ? ? ? ? ? ? ? ?this.vy++
 ? ? ? ? ? ? ? ?this.age--
 ? ? ? ? ? ?}
 ? ? ? ? ? ?draw() {
 ? ? ? ? ? ? ? ?ctx.globalAlpha = 1
 ? ? ? ? ? ? ? ?ctx.beginPath()
 ? ? ? ? ? ? ? ?ctx.fillStyle = this.c
 ? ? ? ? ? ? ? ?ctx.arc(this.x, this.y, 2, 0, Math.PI * 2)
 ? ? ? ? ? ? ? ?ctx.fill()
 ? ? ? ? ? ?}
 ? ? ? ?}
 ? ? ? ?// 煙花上升
 ? ? ? ?class Firework {
 ? ? ? ? ? ?constructor() {
 ? ? ? ? ? ? ? ?this.y = canvas.height
 ? ? ? ? ? ? ? ?this.x = Math.random() * canvas.width | 0
 ? ? ? ? ? ? ? ?this.vel = -(Math.random() * Math.sqrt(canvas.height) / 3 + Math.sqrt(4 * canvas.height) / 2) / 5
 ? ? ? ? ? ? ? ?this.c = "hsl(" + (Math.random() * 360 | 0) + ",100%,60%)"
 ? ? ? ? ? ?}
 ? ? ? ? ? ?update() {
 ? ? ? ? ? ? ? ?this.y += this.vel
 ? ? ? ? ? ? ? ?this.vel += 0.04
 ? ? ? ? ? ? ? ?if (this.vel >= 0) {
 ? ? ? ? ? ? ? ? ? ?for (var i = 0; i < 150; i++) {
 ? ? ? ? ? ? ? ? ? ? ? ?particlesArray.push(new Particle(this.x, this.y, this.c))
 ? ? ? ? ? ? ? ? ? ?}
 ? ? ? ? ? ? ? ? ? ?this.y = canvas.height
 ? ? ? ? ? ? ? ? ? ?this.x = Math.random() * canvas.width | 0
 ? ? ? ? ? ? ? ? ? ?this.vel = -(Math.random() * Math.sqrt(canvas.height) / 3 + Math.sqrt(4 * canvas.height) / 2) / 5
 ? ? ? ? ? ? ? ? ? ?this.c = "hsl(" + (Math.random() * 360 | 0) + ",100%,60%)"
 ? ? ? ? ? ? ? ?}
 ? ? ? ? ? ?}
 ? ? ? ? ? ?draw() {
 ? ? ? ? ? ? ? ?ctx.globalAlpha = 1
 ? ? ? ? ? ? ? ?ctx.beginPath()
 ? ? ? ? ? ? ? ?ctx.fillStyle = this.c
 ? ? ? ? ? ? ? ?ctx.arc(this.x, this.y, 3, 0, Math.PI * 2)
 ? ? ? ? ? ? ? ?ctx.fill()
 ? ? ? ? ? ?}
 ? ? ? ?}

 ? ? ? ?function init_fireworks() {
 ? ? ? ? ? ?for (var i = 0; i < (canvas.width / 200 | 0); i++) {
 ? ? ? ? ? ? ? ?fireworksArray.push(new Firework)
 ? ? ? ? ? ?}
 ? ? ? ?}
 ? ? ? ?init_fireworks() 

 ? ? ? ?function draw() {
 ? ? ? ? ? ?ctx.globalAlpha = 0.1
 ? ? ? ? ? ?ctx.fillStyle = "black"
 ? ? ? ? ? ?ctx.fillRect(0, 0, canvas.width, canvas.height)
 ? ? ? ? ? ?for (var i = 0; i < fireworksArray.length; i++) {
 ? ? ? ? ? ? ? ?fireworksArray[i].update()
 ? ? ? ? ? ? ? ?fireworksArray[i].draw()
 ? ? ? ? ? ?}
 ? ? ? ? ? ?for (var i = 0; i < particlesArray.length; i++) {
 ? ? ? ? ? ? ? ?particlesArray[i].update()
 ? ? ? ? ? ? ? ?particlesArray[i].draw()
 ? ? ? ? ? ? ? ?if (particlesArray[i].age < 0) {
 ? ? ? ? ? ? ? ? ? ?particlesArray.splice(i, 1)
 ? ? ? ? ? ? ? ?}
 ? ? ? ? ? ?}
 ? ? ? ? ? ?requestAnimationFrame(draw)
 ? ? ? ?}
 ? ? ? ?draw()
 ? ?</script>
</body>

</html>


canvas煙花動(dòng)畫(huà)的評(píng)論 (共 條)

分享到微博請(qǐng)遵守國(guó)家法律
辽源市| 融水| 永顺县| 秭归县| 布拖县| 宣威市| 天等县| 榆社县| 土默特右旗| 锡林浩特市| 泗水县| 青岛市| 政和县| 讷河市| 拉孜县| 凤冈县| 徐闻县| 钟山县| 河南省| 镇江市| 德惠市| 临漳县| 天水市| 荣昌县| 桓台县| 微博| 韶关市| 利辛县| 曲阳县| 六盘水市| 赣州市| 馆陶县| 南澳县| 满洲里市| 威信县| 安阳市| 新竹市| 临海市| 秦安县| 宁国市| 从江县|