ikun请进|爱心代码表白蔡徐坤来了

实现效果如下

 话不多说,直接代码全给,以下:

<!DOCTYPE html>
<html><head><title></title><script src="js/jquery.min.js"></script></head><style>* {padding: 0;margin: 0;}html,body {height: 100%;padding: 0;margin: 0;background: #000;}.aa {position: fixed;left: 50%;bottom: 10px;color: #ccc;}.container {width: 100%;height: 100%;}canvas {z-index: 99;position: absolute;width: 100%;height: 100%;}p{height: 10px;line-height: 100px;/*垂直居中关键*/text-align:center;font-family: "Lucida Calligraphy", cursive, serif, sans-serif;font-weight: bolder;font-size: xx-large;position: absolute;color: rgba(255, 247, 9, 0.952);}.parent {width:70px;height:1px;border:1px solid #000000;}.children{width:240px;height:50px;  margin-left:370px;margin-top:300px;color: rgba(255, 247, 9, 0.952);}</style><div class="parent"><div class="children"><p>蔡 徐 坤 我 爱 你</p></div></div><body><!-- 樱花 --><div id="jsi-cherry-container" class="container"><audio autoplay="autopaly"><source src="renxi.mp3" type="audio/mp3" /></audio><img class="img" src="./123.png" alt="" /><!-- 爱心 --><canvas id="pinkboard" class="container"></canvas></div></body>
</html>
<script>/** Settings*/var settings = {particles: {length: 500, // maximum amount of particlesduration: 2, // particle duration in secvelocity: 100, // particle velocity in pixels/seceffect: -0.75, // play with this for a nice effectsize: 30, // particle size in pixels},};(function () {var b = 0;var c = ["ms", "moz", "webkit", "o"];for (var a = 0; a < c.length && !window.requestAnimationFrame; ++a) {window.requestAnimationFrame = window[c[a] + "RequestAnimationFrame"];window.cancelAnimationFrame =window[c[a] + "CancelAnimationFrame"] ||window[c[a] + "CancelRequestAnimationFrame"];}if (!window.requestAnimationFrame) {window.requestAnimationFrame = function (h, e) {var d = new Date().getTime();var f = Math.max(0, 16 - (d - b));var g = window.setTimeout(function () {h(d + f);}, f);b = d + f;return g;};}if (!window.cancelAnimationFrame) {window.cancelAnimationFrame = function (d) {clearTimeout(d);};}})();/** Point class*/var Point = (function () {function Point(x, y) {this.x = typeof x !== "undefined" ? x : 0;this.y = typeof y !== "undefined" ? y : 0;}Point.prototype.clone = function () {return new Point(this.x, this.y);};Point.prototype.length = function (length) {if (typeof length == "undefined")return Math.sqrt(this.x * this.x + this.y * this.y);this.normalize();this.x *= length;this.y *= length;return this;};Point.prototype.normalize = function () {var length = this.length();this.x /= length;this.y /= length;return this;};return Point;})();/** Particle class*/var Particle = (function () {function Particle() {this.position = new Point();this.velocity = new Point();this.acceleration = new Point();this.age = 0;}Particle.prototype.initialize = function (x, y, dx, dy) {this.position.x = x;this.position.y = y;this.velocity.x = dx;this.velocity.y = dy;this.acceleration.x = dx * settings.particles.effect;this.acceleration.y = dy * settings.particles.effect;this.age = 0;};Particle.prototype.update = function (deltaTime) {this.position.x += this.velocity.x * deltaTime;this.position.y += this.velocity.y * deltaTime;this.velocity.x += this.acceleration.x * deltaTime;this.velocity.y += this.acceleration.y * deltaTime;this.age += deltaTime;};Particle.prototype.draw = function (context, image) {function ease(t) {return --t * t * t + 1;}var size = image.width * ease(this.age / settings.particles.duration);context.globalAlpha = 1 - this.age / settings.particles.duration;context.drawImage(image,this.position.x - size / 2,this.position.y - size / 2,size,size);};return Particle;})();/** ParticlePool class*/var ParticlePool = (function () {var particles,firstActive = 0,firstFree = 0,duration = settings.particles.duration;function ParticlePool(length) {// create and populate particle poolparticles = new Array(length);for (var i = 0; i < particles.length; i++)particles[i] = new Particle();}ParticlePool.prototype.add = function (x, y, dx, dy) {particles[firstFree].initialize(x, y, dx, dy);// handle circular queuefirstFree++;if (firstFree == particles.length) firstFree = 0;if (firstActive == firstFree) firstActive++;if (firstActive == particles.length) firstActive = 0;};ParticlePool.prototype.update = function (deltaTime) {var i;// update active particlesif (firstActive < firstFree) {for (i = firstActive; i < firstFree; i++)particles[i].update(deltaTime);}if (firstFree < firstActive) {for (i = firstActive; i < particles.length; i++)particles[i].update(deltaTime);for (i = 0; i < firstFree; i++) particles[i].update(deltaTime);}// remove inactive particleswhile (particles[firstActive].age >= duration &&firstActive != firstFree) {firstActive++;if (firstActive == particles.length) firstActive = 0;}};ParticlePool.prototype.draw = function (context, image) {// draw active particlesif (firstActive < firstFree) {for (i = firstActive; i < firstFree; i++)particles[i].draw(context, image);}if (firstFree < firstActive) {for (i = firstActive; i < particles.length; i++)particles[i].draw(context, image);for (i = 0; i < firstFree; i++) particles[i].draw(context, image);}};return ParticlePool;})();/** Putting it all together*/(function (canvas) {var context = canvas.getContext("2d"),particles = new ParticlePool(settings.particles.length),particleRate =settings.particles.length / settings.particles.duration, // particles/sectime;// get point on heart with -PI <= t <= PIfunction pointOnHeart(t) {return new Point(160 * Math.pow(Math.sin(t), 3),130 * Math.cos(t) -50 * Math.cos(2 * t) -20 * Math.cos(3 * t) -10 * Math.cos(4 * t) +25);}// creating the particle image using a dummy canvasvar image = (function () {var canvas = document.createElement("canvas"),context = canvas.getContext("2d");canvas.width = settings.particles.size;canvas.height = settings.particles.size;// helper function to create the pathfunction to(t) {var point = pointOnHeart(t);point.x =settings.particles.size / 2 +(point.x * settings.particles.size) / 350;point.y =settings.particles.size / 2 -(point.y * settings.particles.size) / 350;return point;}// create the pathcontext.beginPath();var t = -Math.PI;var point = to(t);context.moveTo(point.x, point.y);while (t < Math.PI) {t += 0.01; // baby steps!point = to(t);context.lineTo(point.x, point.y);}context.closePath();// create the fillcontext.fillStyle = "#ea80b0";context.fill();// create the imagevar image = new Image();image.src = canvas.toDataURL();return image;})();// render that thing!function render() {// next animation framerequestAnimationFrame(render);// update timevar newTime = new Date().getTime() / 1000,deltaTime = newTime - (time || newTime);time = newTime;// clear canvascontext.clearRect(0, 0, canvas.width, canvas.height);// create new particlesvar amount = particleRate * deltaTime;for (var i = 0; i < amount; i++) {var pos = pointOnHeart(Math.PI - 2 * Math.PI * Math.random());var dir = pos.clone().length(settings.particles.velocity);particles.add(canvas.width / 2 + pos.x,canvas.height / 2 - pos.y,dir.x,-dir.y);}// update and draw particlesparticles.update(deltaTime);particles.draw(context, image);}// handle (re-)sizing of the canvasfunction onResize() {canvas.width = canvas.clientWidth;canvas.height = canvas.clientHeight;}window.onresize = onResize;// delay rendering bootstrapsetTimeout(function () {onResize();render();}, 10);})(document.getElementById("pinkboard"));</script><script>var RENDERER = {INIT_CHERRY_BLOSSOM_COUNT: 30,MAX_ADDING_INTERVAL: 10,init: function () {this.setParameters();this.reconstructMethods();this.createCherries();this.render();if (navigator.userAgent.match(/(phone|pod|iPhone|iPod|ios|Android|Mobile|BlackBerry|IEMobile|MQQBrowser|JUC|Fennec|wOSBrowser|BrowserNG|WebOS|Symbian|Windows Phone)/i)) {// var box = document.querySelectorAll(".box")[0];// console.log(box, "移动端");// box.style.marginTop = "65%";}},setParameters: function () {this.$container = $("#jsi-cherry-container");this.width = this.$container.width();this.height = this.$container.height();this.context = $("<canvas />").attr({ width: this.width, height: this.height }).appendTo(this.$container).get(0)var rate = this.FOCUS_POSITION / (this.z + this.FOCUS_POSITION),x = this.renderer.width / 2 + this.x * rate,y = this.renderer.height / 2 - this.y * rate;return { rate: rate, x: x, y: y };},re}} else {this.phi += Math.PI / (axis.y == this.thresholdY ? 200 : 500);this.phi %= Math.PI;}if (this.y <= -this.renderer.height * this.SURFACE_RATE) {this.x += 2;this.y = -this.renderer.height * this.SURFACE_RATE;} else {this.x += this.vx;this.y += this.vy;}return (this.z > -this.FOCUS_POSITION &&this.z < this.FAR_LIMIT &&this.x < this.renderer.width * 1.5);},};$(function () {RENDERER.init();});</script>

展示方法看我写的第一篇文章

http://t.csdn.cn/Sg0KU

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

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

相关文章

HTML基于蔡徐坤的打飞机游戏源码

正文: 坤坤一直都是非常火的&#xff0c;所以坤坤的真爱粉就开发出了这个游戏源码&#xff0c;有兴趣的自行去体验了。 程序: wwegr.lanzouw.com/iPUKM07wpakf 图片:

计算机弹奏蔡徐坤,用了多年键盘才发现,CTRL键跟蔡徐坤有关,细思极恐!

原标题&#xff1a;用了多年键盘才发现&#xff0c;CTRL键跟蔡徐坤有关&#xff0c;细思极恐&#xff01; 自从电脑出现以后&#xff0c;我们就在享受电脑带来的便利。而我们在使用电脑的时候就需要键盘来进行打字&#xff0c;所以我们想要完整的使用电脑键盘是少不了的。 而小…

html蔡徐坤邀请你打篮球源码,蔡徐坤给IKUN“讲笑话”,想邀请粉丝打篮球,网友:你打球像...

说到最近非常“火”的一位流量顶级明星&#xff0c;蔡徐坤绝对算得上是非常具有争议性的一个明星了&#xff0c;而因为前段时间潘长江老师不认识蔡徐坤的事件&#xff0c;使得蔡徐坤的粉丝跟网友们互撕了起来&#xff0c;之后这件事就这样因为蔡徐坤的道歉而慢慢消下去了&#…

图片转为字符串(蔡徐坤之舞动人生)

一、直接看效果 源代码图像&#xff1a; 结果图像&#xff08;转为彩色字符串&#xff09;&#xff1a; 2、上代码 解释&#xff1a;下面的path是视频路径&#xff0c;结果就会显示如上图所示&#xff1b;想要黑白效果自需要将代码下面的&#xff08;b&#xff0c;g&#xff0…

Python画蔡徐坤 附源码

首先看效果图 复制粘贴即可运行 from turtle import * from math import *# 高级椭圆参数方程&#xff08;颜色&#xff09;&#xff0c;sita为逆时针旋转角度 def ty_c(x, y, sita, a, b, p, q, c):fillcolor(c)si 2 * pi / 100penup()goto(x a * cos(sita), y a * sin(si…

蔡徐坤游戏HTML,JS制作蔡徐坤打篮球小游戏(鸡你太美?)

一、前提: 和我之前写的 QT小球游戏 差不多(指的是实现方法)。 更新: 应网友要求,更新了背景音乐:只因你太美(鸡你太美).mp3 + 其他小更新部分。 背景音乐(若打开无音乐,请刷新重试): 整体界面(index.html) 二、解析: 1:Game.js: 11.包括背景图的绘制,砖块,积分榜 //…

Css简单动画实现蔡徐坤跳舞

(学习css动画突发奇想做的。) <!DOCTYPE html> <html lang"en"> <head><meta charset"UTF-8"><meta name"viewport" content"widthdevice-width, initial-scale1.0"><meta http-equiv"X-UA-Co…

诗圣杜甫不同时期的代表作

杜甫一生大致分为四个时期。 中青年时期 青年时&#xff0c;作为官三代的杜甫并不缺钱&#xff0c;四处游历&#xff0c;与李白、高适唱和、仙游&#xff0c;成为佳话。这个时期杜甫的作品热血豪迈&#xff0c;气势蓬勃。代表作首推《望岳》&#xff1a; 岱宗夫如何&#xf…

【唐诗学习】一、古诗概述

一、古诗概述 为什么要学习古诗词&#xff1f; 古诗词可以陶冶情操&#xff0c;传承文化诗词&#xff0c;其实就是古代的流行歌曲&#xff0c;它们记录着一个个时代的变迁&#xff0c;是历史的旋律。还有一点很重要&#xff1a;同样是记录历史&#xff0c;史书是国家视角&…

唐诗宋词大全 API 接口

唐诗宋词大全 API 接口&#xff0c;支持 40 万数据全文检索。 1. 产品功能 中文全数量级唐诗宋诗宋词数据&#xff1b;总计近 40 万条数据&#xff1b;数据持续更新与维护&#xff1b;全接口支持 HTTPS&#xff08;TLS v1.0 / v1.1 / v1.2 / v1.3&#xff09;&#xff1b;全面…

中国最伟大的现实主义诗人:杜甫的一生

杜甫(712年2月12日&#xff5e;770年)&#xff0c;字子美&#xff0c;自号少陵野老&#xff0c;唐代诗人&#xff0c;与李白合称“李杜”。生于河南巩县&#xff0c;原籍湖北襄阳。 家世背景 杜甫出身于京兆杜氏&#xff0c;乃北方的大士族。其远祖为汉武帝有名的酷吏杜周(&a…

【Python古诗词鉴赏小程序】千古绝唱,精选中国最美古诗句,经典咏流传~

导语 中国有礼仪之大&#xff0c;故称夏&#xff1b;有服章之美&#xff0c;谓之华。华夏&#xff0c;是世界于我民族的赞誉&#xff0c;是炎黄子孙于自 己的永世骄傲。 所有文章完整的素材源码都在&#x1f447;&#x1f447; 粉丝白嫖源码福利&#xff0c;请移步至CSDN社区…

诗圣杜甫长啥样?AI技术神还原

本文转载自腾讯网 万里桥西一草堂&#xff0c;百花潭水即沧浪。杜甫住了3年零9个月的草堂是什么样子&#xff1f;诗圣杜甫又长啥样&#xff1f;AI人工智能技术为你还原。 一提起诗圣杜甫&#xff0c;大多数读者都会想起他的《茅屋为秋风所破歌》&#xff0c;一个瘦骨嶙峋、忧…

经典古诗文与人工智能创作诗歌 之诗三百(AI)

水陆草木之花,可爱者甚蕃。晋陶渊明独爱菊。自李唐来,世人甚爱牡丹。予独爱莲之出淤泥而不染,濯清涟而不妖,中通外直,不蔓不枝,香远益清,亭亭净植,可远观而不可亵玩焉。出自宋代周敦颐的《爱莲说》 宋代描写荷花的古诗&#xff1a; 小池 【作者】杨万里 【朝代】宋 泉眼无声惜…

AI写诗

引言&#xff1a;自然语言处理是计算机科学领域与人工智能领域中的一个重要方向。它研究能实现人与计算机之间用自然语言进行有效通信的各种理论和方法。自然语言处理是一门融语言学、计算机科学、数学于一体的科学。因此&#xff0c;这一领域的研究将涉及自然语言&#xff0c;…

LangChain:使用自然语言查询数据库

目录 前言 LangChain介绍 为什么选择LangChain LangChain的结构 代理 SQL Database Agent 数据库模式和资源 导入必要的库 连接到数据库&#xff1a; 设置 LLM、工具包和代理执行器&#xff1a; 使用自然语言查询数据库&#xff1a; 完整代码示例&#xff1a; 结论…

如何在ONLYOFFICE v7.3中创建一个联系表单

自从ONLYOFFICE7.3强势更新版本以来&#xff0c;我一直都在为大家做一些测试&#xff0c;测试它的新功能&#xff0c;今天呢&#xff0c;又给大家带来一次新的测试&#xff0c;这次主要测试ONLYOFFICE7.3版本后的创建新的表单&#xff0c;我们来测试一下效果怎么样。 ONLYOFFIC…

chatgpt赋能python:Python配置Geany教程

Python配置Geany教程 作为一名拥有10年python编程经验的工程师&#xff0c;我发现Geany是一款非常适合Python编程的编辑器&#xff0c;因为它简单易用、轻量级和可定制性极强。在这篇文章中&#xff0c;我将向大家介绍如何在Geany中配置Python环境&#xff0c;以便更好地进行P…

fastadmin插件开发

微信插件开发&#xff0c;集成到fastadmin&#xff0c;使用如下命令 php think addon -a chat_gpt -c create 查看后台 自动生成如下目录 install.sql数据库文件 CREATE TABLE IF NOT EXISTS __PREFIX__mydemo_list (id int(10) NOT NULL AUTO_INCREMENT COMMENT ID,pid int(…

chatgpt赋能python:Python群发微信消息:解决方案

Python群发微信消息&#xff1a;解决方案 肆无忌惮的群发微信消息&#xff0c;是否是你目前所需的解决方案&#xff1f;如果是&#xff0c;那么你来对地方了。 Python是一门十分强大的编程语言&#xff0c;广泛用于各种人工智能、计算机视觉、机器学习等领域。Python可以用于…