html--宠物

文章目录

  • html
  • js
  • css

html

<!DOCTYPE html>
<html lang="en" >
<head><meta charset="UTF-8"><title>CodePen - Spaceworm</title><script>
window.requestAnimFrame = (function() {return (window.requestAnimationFrame ||window.webkitRequestAnimationFrame ||window.mozRequestAnimationFrame ||window.oRequestAnimationFrame ||window.msRequestAnimationFrame ||function(callback) {window.setTimeout(callback);});
});function init(elemid) {let canvas = document.getElementById(elemid),c = canvas.getContext("2d"),w = (canvas.width = window.innerWidth),h = (canvas.height = window.innerHeight);c.fillStyle = "rgba(30,30,30,1)";c.fillRect(0, 0, w, h);return {c:c,canvas:canvas};
}
</script><link rel="stylesheet" href="css/style.css"></head>
<body><canvas id="canvas"></canvas><script src="js/script.js"></script></body>
</html>

js

window.onload = function () {//functions definition//class definitionclass segm {constructor(x, y, l) {this.b = Math.random()*1.9+0.1;this.x0 = x;this.y0 = y;this.a = Math.random() * 2 * Math.PI;this.x1 = this.x0 + l * Math.cos(this.a);this.y1 = this.y0 + l * Math.sin(this.a);this.l = l;}update(x, y) {this.x0 = x;this.y0 = y;this.a = Math.atan2(this.y1 - this.y0, this.x1 - this.x0);this.x1 = this.x0 + this.l * Math.cos(this.a);this.y1 = this.y0 + this.l * Math.sin(this.a);}}class rope {constructor(tx, ty, l, b, slq) {this.res = l / slq;this.l = l;this.segm = [];this.segm.push(new segm(tx, ty, this.l / this.res));for (let i = 1; i < this.res; i++) {this.segm.push(new segm(this.segm[i - 1].x1, this.segm[i - 1].y1, this.l / this.res));}this.b = b;}update(t) {this.segm[0].update(t.x, t.y);for (let i = 1; i < this.res; i++) {this.segm[i].update(this.segm[i - 1].x1, this.segm[i - 1].y1);}}show(t) {if(t == "l"){c.beginPath();for (let i = 0; i < this.segm.length; i++) {c.lineTo(this.segm[i].x0, this.segm[i].y0);}c.lineTo(this.segm[this.segm.length - 1].x1,this.segm[this.segm.length - 1].y1);c.strokeStyle = "white";c.lineWidth = this.b;c.stroke();c.beginPath();c.arc(this.segm[0].x0, this.segm[0].y0, 1, 0, 2 * Math.PI);c.fillStyle = "white";c.fill();c.beginPath();c.arc(this.segm[this.segm.length - 1].x1,this.segm[this.segm.length - 1].y1,2,0,2 * Math.PI);c.fillStyle = "white";c.fill();}else{for (let i = 0; i < this.segm.length; i++) {c.beginPath();c.arc(this.segm[i].x0, this.segm[i].y0, this.segm[i].b, 0, 2*Math.PI);c.fillStyle = "white";c.fill();}c.beginPath();c.arc(this.segm[this.segm.length - 1].x1,this.segm[this.segm.length - 1].y1,2, 0, 2*Math.PI);c.fillStyle = "white";c.fill();}}}//setting up canvaslet c = init("canvas").c,canvas = init("canvas").canvas,w = (canvas.width = window.innerWidth),h = (canvas.height = window.innerHeight),ropes = [];//variables definitionlet nameOfVariable = "value",mouse = {},last_mouse = {},rl = 50,randl = [],target = { x: w/2, y: h/2 },last_target = {},t = 0,q = 10,da = [],type = "l";for (let i = 0; i < 100; i++) {ropes.push(new rope(w / 2,h / 2,(Math.random() * 1 + 0.5) * 500,Math.random() * 0.4 + 0.1,Math.random()*15+5));randl.push(Math.random() * 2 - 1);da.push(0);}//place for objects in animationfunction draw() {if (mouse.x) {target.errx = mouse.x - target.x;target.erry = mouse.y - target.y;} else {target.errx =w / 2 +(h / 2 - q) *Math.sqrt(2) *Math.cos(t) /(Math.pow(Math.sin(t), 2) + 1) -target.x;target.erry =h / 2 +(h / 2 - q) *Math.sqrt(2) *Math.cos(t) *Math.sin(t) /(Math.pow(Math.sin(t), 2) + 1) -target.y;}target.x += target.errx / 10;target.y += target.erry / 10;t += 0.01;for (let i = 0; i < ropes.length; i++) {if (randl[i] > 0) {da[i] += (1 - randl[i]) / 10;} else {da[i] += (-1 - randl[i]) / 10;}ropes[i].update({x:target.x +randl[i] * rl * Math.cos((i * 2 * Math.PI) / ropes.length + da[i]),y:target.y +randl[i] * rl * Math.sin((i * 2 * Math.PI) / ropes.length + da[i])});if(randl[i] > -0.5){type = "l";}else{type = "o";}ropes[i].show(type);}last_target.x = target.x;last_target.y = target.y;}//mouse positioncanvas.addEventListener("mousemove",function (e) {last_mouse.x = mouse.x;last_mouse.y = mouse.y;mouse.x = e.pageX - this.offsetLeft;mouse.y = e.pageY - this.offsetTop;},false);canvas.addEventListener("mouseleave", function(e) {mouse.x = false;mouse.y = false;});//animation framefunction loop() {window.requestAnimFrame(loop);c.clearRect(0, 0, w, h);draw();}//window resizewindow.addEventListener("resize", function () {(w = canvas.width = window.innerWidth),(h = canvas.height = window.innerHeight);loop();});//animation runnerloop();setInterval(loop, 1000 / 60);
};

css

body,
html {margin: 0px;padding: 0px;position: fixed;background: rgb(30, 30, 30);cursor: none;
}

在这里插入图片描述

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/751611.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

[HDCTF 2023]enc

32位 这里后面运行这个程序居然要 Visual Studio&#xff0c;不然运行不了 IDA打开&#xff0c;直接锁定main函数 看见v9&#xff0c;四个32位&#xff0c;就想到了tea加密 、 标准tea from ctypes import * #tea def decrypt(v, k):v0 c_uint32(v[0])v1 c_uint32(v[1])…

代码随想录阅读笔记-字符串【反转字符串】

题目 编写一个函数&#xff0c;其作用是将输入的字符串反转过来。输入字符串以字符数组 char[] 的形式给出。 不要给另外的数组分配额外的空间&#xff0c;你必须原地修改输入数组、使用 O(1) 的额外空间解决这一问题。 你可以假设数组中的所有字符都是 ASCII 码表中的可打印…

未来已来:科技驱动的教育变革

我们的基础教育数百年来一成不变。学生们齐聚在一个物理空间&#xff0c;听老师现场授课。每节课时长和节奏几乎一致&#xff0c;严格按照课表进行。老师就像“讲台上的圣人”。这种模式千篇一律&#xff0c;并不适用于所有人。学生遇到不懂的问题&#xff0c;只能自己摸索或者…

Linux查看硬件型号详细信息

1.查看CPU &#xff08;1&#xff09;使用cat /proc/cpuinfo或lscpu &#xff08;2&#xff09;使用dmidecode -i processor Dmidecode 这款软件允许你在 Linux 系统下获取有关硬件方面的信息。Dmidecode 遵循 SMBIOS/DMI 标准&#xff0c;其输出的信息包括 BIOS、系统、主板、…

UE4_调试工具_绘制调试球体

学习笔记&#xff0c;仅供参考&#xff01; 效果&#xff1a; 步骤&#xff1a; 睁开眼睛就是该变量在此蓝图的实例上可公开编辑。 勾选效果&#xff1a;

【Linux】进程与可执行程序的关系fork创建子进程写实拷贝的理解

一、进程与可执行程序之间关系的理解 系统会将此时在系统运行的进程的各种属性都以文件的形式给你保存在系统的proc目录下。运行一个程序的时候&#xff0c;本质就是把磁盘中的程序拷贝到内存中&#xff0c;当一个进程运行起来的时候&#xff0c;它本质已经和磁盘中的可执行程序…

基于springboot和mysql实现的在线考试系统

1.项目介绍 一个在线考试系统&#xff0c;考生可以注册&#xff0c;成为本平台的一个用户&#xff0c;然后进行考试&#xff0c;考完生成成绩&#xff0c;同时用户可以查询自己考试的试卷&#xff0c;可以查看试卷解析。 升级改版 新增出卷人角色&#xff0c;主要职责是进入…

滴滴 Flink 指标系统的架构设计与实践

毫不夸张地说&#xff0c;Flink 指标是洞察 Flink 任务健康状况的关键工具&#xff0c;它们如同 Flink 任务的眼睛一般至关重要。简而言之&#xff0c;这些指标可以被理解为滴滴数据开发平台实时运维系统的数据图谱。在实时计算领域&#xff0c;Flink 指标扮演着举足轻重的角色…

【C++】了解一下编码

个人主页 &#xff1a; zxctscl 如有转载请先通知 文章目录 1. 前言2. ASCII编码3. unicode4. GBK5. 类型转换 1. 前言 看到string里面还有Template instantiations&#xff1a; string其实是basic_string<char>&#xff0c;它还是一个模板。 再看看wstring&#xff1…

Linux中的文件类型

一、Linux系统如何区分文件类型&#xff1f; Linux系统中不以文件后缀名来区分文件类型&#xff0c;而是通过文件属性中第一列来区分 &#xff08;Linux系统不以文件后缀名区分文件类型&#xff0c;但是不代表Linux系统不使用文件后缀名&#xff0c;LInux系统中的许多工具例如…

如果网络不好 如何下载huggingface上的模型

很多朋友网络不太好&#xff0c;有时候上不了huggingface这样的国外网站&#xff1b; 或者网络流量不太够&#xff0c;想要下载一些stable diffusion模型&#xff0c;或者其他人工智能的大模型的时候&#xff0c;看到动辄几个G的模型文件&#xff0c;不太舍得下载&#xff1b;…

5 张图带你了解分布式事务 Saga 模式中的状态机

大家好&#xff0c;我是君哥。 状态机在我们的工作中应用非常广泛&#xff0c;今天聊一聊分布式事务中间件 Seata 中 Saga 模式的状态机。 1 状态机简介 状态机是一个数学模型&#xff0c;它将工作中的运行状态和流转规则抽象出来&#xff0c;可以协调相关信号来完成预先设定…

Pycharm安装阿里云通义码灵插件图文教程

前提&#xff1a;必须安装pycharm&#xff0c;可以访问 pycharm下载链接打开页面下载 点击下载后&#xff0c;将下载文件打开&#xff0c;然后无脑安装&#xff0c;安装好后继续看。 然后就安装好了&#xff0c;然后关闭安装&#xff0c;然后打开pycharm即可。 &#x1f680;…

如何在idea中配置tomcat服务器,然后部署一个项目

文章目录 前言第一步 先新建一个空项目第二步 添加框架支持第三步 添加配置及如何部署最后一步 运行及检查有没有问题总结 前言 本章学习的是在idea中配置tomcat服务器&#xff0c;然后部署一个项目 如果没有下载Tomcat服务器的可以在上一个博客观看下载及手动部署&#xff0c;…

线程常用方法

一常用方法第一组 1.setName 设置线程名称&#xff0c;使之与参数name相同&#xff1b; 2.getName 返回该线程的名字&#xff1b; 3.start 使该线程开始执行&#xff0c;java虚拟机底层调用该线程的statr0方法&#xff1b; 4.run …

前端学习之css伪元素选择器

伪元素选择器 &#xff08;注释是对各个内容的解释与理解&#xff09; <!DOCTYPE html> <html lang"en"> <head><meta charset"UTF-8"><title>伪元素选择器</title><!-- 双冒号开头一般都称为伪元素&#xff0c;…

面向对象编程第三式: 多态 (Java篇)

本篇会加入个人的所谓‘鱼式疯言’ ❤️❤️❤️鱼式疯言:❤️❤️❤️此疯言非彼疯言 而是理解过并总结出来通俗易懂的大白话, 小编会尽可能的在每个概念后插入鱼式疯言,帮助大家理解的. &#x1f92d;&#x1f92d;&#x1f92d;可能说的不是那么严谨.但小编初心是能让更多人…

(三)OpenOFDM符号对齐

符号对齐 模块&#xff1a;sync_long.v输入&#xff1a;I (16), Q (16), phase_offset (32), short_gi (1)输出&#xff1a;long_preamble_detected (1), fft_re (16), fft_im (16) 检测到数据包后&#xff0c;下一步是精确确定每个 OFDM 符号的起始位置。在802.11中&#xf…

vue2+vant2+Laravel7 实现多图上传到七牛云

后端接口 1、路由&#xff0c;在 routes/api.php 中 Route::resource(photos, PhotoController)->only(store);2、创建对应控制器 <?php namespace App\Http\Controllers; use Illuminate\Http\Request;class PhotoController extends Controller {/**** 上传图片* p…

深度学习-基于机器学习的语音情感识别系统的设计

概要 语音识别在现实中有着极为重要的应用&#xff0c;现在语音内容的识别技术已日趋成熟。当前语音情感识别是研究热点之一&#xff0c;它可以帮助AI和人更好地互动、可以帮助心理医生临床诊断、帮助随时随地高效测谎等。本文采用了中科院自动化所的CASIA语料库作为样本&#…