返回顶部
首页 > 资讯 > 后端开发 > Python >李峋同款爱心Python代码版来了
  • 847
分享到

李峋同款爱心Python代码版来了

python开发语言 2023-08-31 09:08:08 847人浏览 八月长安

Python 官方文档:入门教程 => 点击学习

摘要

🤵‍♂️ 个人主页@老虎也淘气 个人主页 ✍🏻作者简介:python学习者 🐋 希望大家多多支持我们一起进步!😄 如果文章对你有帮

在这里插入图片描述

🤵‍♂️ 个人主页@老虎也淘气 个人主页
✍🏻作者简介:python学习
🐋 希望大家多多支持我们一起进步!😄
如果文章对你有帮助的话,
欢迎评论 💬点赞👍🏻 收藏 📂加关注

最近看到不少关于李峋同款爱心的视频、文章,今天我们也分享一下李峋同款爱心 Python 代码版。

简单来说李峋同款爱心就是一个动态的♥型效果,主要 Python 代码实现如下:

def __init__(self, generate_frame=20):# 原始爱心坐标集合self._points = set()  # 边缘扩散效果点坐标集合self._edge_diffusion_points = set()  # 中心扩散效果点坐标集合self._center_diffusion_points = set()  # 每帧动态点坐标self.all_points = {}  self.build(2000)self.random_halo = 1000self.generate_frame = generate_framefor frame in range(generate_frame): self.calc(frame)def build(self, number):for _ in range(number): t = random.unifORM(0, 2 * pi) x, y = heart(t) self._points.add((x, y))# 爱心内扩散for _x, _y in list(self._points): for _ in range(3):  x, y = scatter_inside(_x, _y, 0.05)  self._edge_diffusion_points.add((x, y))# 爱心内再次扩散point_list = list(self._points)for _ in range(4000): x, y = random.choice(point_list) x, y = scatter_inside(x, y, 0.17) self._center_diffusion_points.add((x, y))@staticmethodstaticmethoddef calc_position(x, y, ratio):force = 1 / (((x - X) ** 2 +     (y - Y) ** 2) ** 0.520)dx = ratio * force * (x - X) + random.randint(-1, 1)dy = ratio * force * (y - Y) + random.randint(-1, 1)return x - dx, y - dydef calc(self, generate_frame):ratio = 10 * curve(generate_frame / 10 * pi)halo_radius = int(4 + 6 * (1 + curve(generate_frame / 10 * pi)))halo_number = int( 3000 + 4000 * abs(curve(generate_frame / 10 * pi) ** 2))all_points = []# 光环heart_halo_point = set()for _ in range(halo_number): t = random.uniform(0, 2 * pi) x, y = heart(t, shrink_ratio=11.6) x, y = shrink(x, y, halo_radius) if (x, y) not in heart_halo_point:  heart_halo_point.add((x, y))  x += random.randint(-14, 14)  y += random.randint(-14, 14)  size = random.choice((1, 2, 2))  all_points.append((x, y, size))# 轮廓for x, y in self._points: x, y = self.calc_position(x, y, ratio) size = random.randint(1, 3) all_points.append((x, y, size))# 内容for x, y in self._edge_diffusion_points: x, y = self.calc_position(x, y, ratio) size = random.randint(1, 2) all_points.append((x, y, size))self.all_points[generate_frame] = all_pointsfor x, y in self._center_diffusion_points: x, y = self.calc_position(x, y, ratio) size = random.randint(1, 2) all_points.append((x, y, size))self.all_points[generate_frame] = all_points

实现效果如下:

在这里插入图片描述

满屏爱心代码(修改名字版本)<!DOCTYPE html><!-- saved from url=(0051)https://httishere.gitee.io/notion/v4/love-name.html --><html><head><meta Http-equiv="Content-Type" content="text/html; charset=UTF-8">    <title> Love you </title>    <style type="text/CSS">      body {        margin: 0;        overflow: hidden;        background: #000;      }      canvas {        position: absolute;        width: 100%;        height: 100%;      }      #pinkboard {        animation: anim 1.5s ease-in-out infinite;        -WEBkit-animation: anim 1.5s ease-in-out infinite;        -o-animation: anim 1.5s ease-in-out infinite;        -moz-animation: anim 1.5s ease-in-out infinite;      }      @keyframes anim {        0% {          transform: scale(0.8);        }        25% {          transform: scale(0.7);        }        50% {          transform: scale(1);        }        75% {          transform: scale(0.7);        }        100% {          transform: scale(0.8);        }      }      @-webkit-keyframes anim {        0% {          -webkit-transform: scale(0.8);        }        25% {          -webkit-transform: scale(0.7);        }        50% {          -webkit-transform: scale(1);        }        75% {          -webkit-transform: scale(0.7);        }        100% {          -webkit-transform: scale(0.8);        }      }      @-o-keyframes anim {        0% {          -o-transform: scale(0.8);        }        25% {          -o-transform: scale(0.7);        }        50% {          -o-transform: scale(1);        }        75% {          -o-transform: scale(0.7);        }        100% {          -o-transform: scale(0.8);        }      }      @-moz-keyframes anim {        0% {          -moz-transform: scale(0.8);        }        25% {          -moz-transform: scale(0.7);        }        50% {          -moz-transform: scale(1);        }        75% {          -moz-transform: scale(0.7);        }        100% {          -moz-transform: scale(0.8);        }      }      #name {        position: absolute;        top: 50%;        left: 50%;        transform: translate(-50%, -50%);        margin-top: -20px;        font-size: 46px;        color: #ea80b0;      }</style>  <script src="./ Love you _files/monitors.3.6.36.cn.js.下载" async="" crossorigin="anonymous"></script><script src="./ Love you _files/sentry.3.6.36.cn.js.下载" async="" crossorigin="anonymous"></script></head>  <body>    <canvas id="pinkboard" width="1707" height="868"></canvas>    <canvas id="canvas" width="1707" height="868"></canvas>    <script type="text/javascript">      const colors = [        "#eec996",        "#8fb7d3",        "#b7d4c6",        "#c3bedd",        "#f1d5e4",        "#cae1d3",        "#f3c89d",        "#d0b0c3",        "#819d53",        "#c99294",        "#cec884",        "#ff8e70",        "#e0a111",        "#fffdf6",        "#cbd7ac",        "#e8c6c0",        "#dc9898",        "#ecc8ba",      ]; //用来设置的颜色      var canvas = document.getElementById("canvas");      var ctx = canvas.getContext("2d");      let count = 1;      var ww = window.innerWidth;      var wh = window.innerHeight;      var hearts = [];      function init() {        requestAnimationFrame(render);        canvas.width = ww;        canvas.height = wh;        for (var i = 0; i < 100; i++) {          hearts.push(new Heart());        }      }      function Heart() {        this.x = Math.random() * ww;        this.y = Math.random() * wh;        this.opacity = Math.random() * 0.5 + 0.5;        this.vel = {          x: (Math.random() - 0.5) * 4,          y: (Math.random() - 0.5) * 4,        };        this.targetScale = Math.random() * 0.15 + 0.02;        this.scale = this.targetScale * Math.random();      }      Heart.prototype.update = function (i) {        this.x += this.vel.x;        this.y += this.vel.y;        this.scale += (this.targetScale - this.scale) * 0.01;        if (this.x - this.width > ww || this.x + this.width < 0) {          this.scale = 0;          this.x = Math.random() * ww;        }        if (this.y - this.height > wh || this.y + this.height < 0) {          this.scale = 0;          this.y = Math.random() * wh;        }        this.width = 473.8;        this.height = 408.6;      };      Heart.prototype.draw = function (i) {        ctx.globalAlpha = this.opacity;        ctx.font = `${180 * this.scale}px "微软雅黑"`;        // ctx.font="20px";        ctx.fillStyle = colors[i % 18];        ctx.fillText(          "kawsar",          this.x - this.width * 0.5,          this.y - this.height * 0.5,          this.width,          this.height        );        // ctx.drawImage(        //   heartImage,        //   this.x - this.width * 0.5,        //   this.y - this.height * 0.5,        //   this.width,        //   this.heig

修改满屏文字操作步骤

将上方的代码全部复制

在电脑新建一个txt文件,命名love.txt

打开txt文件,黏贴代码

将双引号的文件给成你想要展示的文字,保存

将txt文件后缀改成 .hmtl

如果你嫌麻烦

可以下方后台回复【爱心】直接下载编辑
在这里插入图片描述

在这里插入图片描述

来源地址:https://blog.csdn.net/m0_66106755/article/details/127825304

--结束END--

本文标题: 李峋同款爱心Python代码版来了

本文链接: https://lsjlt.com/news/384920.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
  • 李峋同款爱心Python代码版来了
    🤵‍♂️ 个人主页@老虎也淘气 个人主页 ✍🏻作者简介:Python学习者 🐋 希望大家多多支持我们一起进步!😄 如果文章对你有帮...
    99+
    2023-08-31
    python 开发语言
  • 李峋同款爱心代码
    李峋爱心代码 背景代码运行pycharm打包成exe程序 背景 最近大火的电视剧《点燃我温暖你》出现,令我的家庭地位进一步下降,因为男主“李峋”已经变成了她的大老公,而我就被打入冷...
    99+
    2023-09-03
    python
  • 爱心代码李峋同款爱心 python html
    目录 前言 一、python 1.python 第一个 2.python第二个 二、HTML 1.第一个 2.第二个html 3.第三个html 3.第四个html 总结 前言 最近那个电视剧很火,就是搞爱心代码的,本人兴趣使然,在...
    99+
    2023-08-31
    python html5
  • 李峋爱心代码
    李峋爱心代码 代码优化:评论区有好多小伙伴想要文字,于是添加了文字功能,大家可以重新下载运行! 温馨提示:此代码涉及Tkinter库,小伙伴们运行前需确保Tkinter库函数有安装 windows下安...
    99+
    2023-08-31
    python 开发语言
  • 【双十一特辑】爱心代码(程序员的浪漫)-李峋
    前言 最近《点燃我温暖你》中李峋的爱心代码超级火,看着特别心动,这不,光棍节快到了,给兄弟们教学一波爱心代码,赶在双十一前表白,让这个双十一不在是孤单一个人! 目录 前言 C语言简易爱心代码 原理 代码 执行结果 C语言动态爱心代...
    99+
    2023-08-31
    开发语言 c语言 python html5 javascript
  • python爱心源代码集锦(18款)
    python爱心源代码集锦(18款)         本文目录: 一、代码效果预览索引图 二、爱心源代码集锦 (1)、爱心图形1(弧线型)(显示的文字写在代码里) (2)、爱心图形2(直线型)(显示的文字写在代码里) (3)、爱心图形3(...
    99+
    2023-09-04
    python 经验分享 青少年编程 源代码 开发语言
  • python动态爱心代码完整版,python动态爱心代码简单
    大家好,本文将围绕python动态爱心代码红颜不简展开说明,python动态爱心代码怎么运行是一个很多人都想弄明白的事情,想搞清楚python动态爱心代码完整版需要先了解以下几个事情。 1、python动态心形代码怎么弄 python动...
    99+
    2023-10-26
    人工智能
  • Python绘制爱心代码(七夕限定版)
    写在前面: 又到了一年一度的七夕节啦!你还在发愁送女朋友什么礼物,不知道怎样表达你满满的爱意吗?别担心,我来帮你!今天,我将教你使用Python绘制一个跳动的爱心,用创意和幽默为这个特殊的夜晚增添浪漫...
    99+
    2023-08-31
    python 开发语言 pycharm
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作