位置: IT常识 - 正文

125款程序员专属情人节表白网站【建议收藏】HTML+CSS+JavaScript(程序员神器)

编辑:rootadmin
125款程序员专属情人节表白网站【建议收藏】HTML+CSS+JavaScript

推荐整理分享125款程序员专属情人节表白网站【建议收藏】HTML+CSS+JavaScript(程序员神器),希望有所帮助,仅作参考,欢迎阅读内容。

文章相关热门搜索词:【程序员 】,125款程序员专属服装,程序员v2,程序员v2,125款程序员专属服务,125款程序员专属头像,125款程序员专属头像,125款程序员专属头像,内容如对您有帮助,希望把文章链接给更多的朋友!

🌩️ 精彩专栏推荐👇🏻👇🏻👇🏻 💂 作者主页: 【进入主页—🚀获取更多源码】 🎓 web前端期末大作业: 【📚HTML5网页期末作业 (1000套) 】 🧡 程序员有趣的告白方式:【💌HTML七夕情人节表白网页制作 (110套) 】 七夕来袭!是时候展现专属于程序员的浪漫了!你打算怎么给心爱的人表达爱意?鲜花礼物?代码表白?还是创意DIY?或者…无论那种形式,快来秀我们一脸吧!

📂文章目录二、📚网站介绍三、🔗网站效果🧩 2.图片演示四、💒 网站代码🧱HTML结构代码🏠CSS样式代码五、🎁更多源码二、📚网站介绍

📓网站程序方面:计划采用最新的网页编程语言HTML5+CSS3+JS程序语言完成网站的功能设计。并确保网站代码兼容目前市面上所有的主流浏览器,已达到打开后就能即时看到网站的效果。

📒网站文件方面:网站系统文件种类包含:html网页结构文件、css网页样式文件、js网页特效文件、images网页图片文件;

125款程序员专属情人节表白网站【建议收藏】HTML+CSS+JavaScript(程序员神器)

📙网页编辑方面:网页作品代码简单,可使用任意HTML编辑软件(如:Dreamweaver、HBuilder、Vscode 、Sublime 、Webstorm、Text 、Notepad++ 等任意html编辑软件进行运行及修改编辑等操作)。

三、🔗网站效果🧩 2.图片演示

下面以樱花雨3D动态相册源码演示为例

html七夕情人节表白网页制作

四、💒 网站代码🧱HTML结构代码<!DOCTYPE html><html> <head> <meta charset="utf-8" /> <title></title> <script src="js/jquery.min.js"></script> <link type="text/css" href="./css/style.css" rel="stylesheet" /> <style> html, body { width: 100%; height: 100%; margin: 0; padding: 0; overflow: hidden; } .container { width: 100%; height: 100%; margin: 0; padding: 0; background-color: #000000; } </style> </head> <body> <audio autoplay="autopaly"> <source src="renxi.mp3" type="audio/mp3" /> </audio> <div id="jsi-cherry-container" class="container"> <div class="box"> <ul class="minbox"> <li></li> <li></li> <li></li> <li></li> <li></li> <li></li> </ul> <ol class="maxbox"> <li></li> <li></li> <li></li> <li></li> <li></li> <li></li> </ol> </div> </div> <script> 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) .getContext('2d'); this.cherries = []; this.maxAddingInterval = Math.round( (this.MAX_ADDING_INTERVAL * 1000) / this.width ); this.addingInterval = this.maxAddingInterval; }, reconstructMethods: function() { this.render = this.render.bind(this); }, render: function() { requestAnimationFrame(this.render); this.context.clearRect(0, 0, this.width, this.height); this.cherries.sort(function(cherry1, cherry2) { return cherry1.z - cherry2.z; }); for (var i = this.cherries.length - 1; i >= 0; i--) { if (!this.cherries[i].render(this.context)) { this.cherries.splice(i, 1); } } if (--this.addingInterval == 0) { this.addingInterval = this.maxAddingInterval; this.cherries.push(new CHERRY_BLOSSOM(this, false)); } } }; var CHERRY_BLOSSOM = function(renderer, isRandom) { this.renderer = renderer; this.init(isRandom); }; CHERRY_BLOSSOM.prototype = { FOCUS_POSITION: 300, FAR_LIMIT: 600, MAX_RIPPLE_COUNT: 100, RIPPLE_RADIUS: 100, SURFACE_RATE: 0.5, SINK_OFFSET: 20, init: function(isRandom) { this.x = this.getRandomValue( -this.renderer.width, this.renderer.width ); this.y = isRandom ? this.getRandomValue(0, this.renderer.height) : this.renderer.height * 1.5; this.z = this.getRandomValue(0, this.FAR_LIMIT); this.vx = this.getRandomValue(-2, 2); this.vy = -2; this.theta = this.getRandomValue(0, Math.PI * 2); this.phi = this.getRandomValue(0, Math.PI * 2); this.psi = 0; this.dpsi = this.getRandomValue(Math.PI / 600, Math.PI / 300); this.opacity = 0; this.endTheta = false; this.endPhi = false; this.rippleCount = 0; var axis = this.getAxis(), theta = this.theta + (Math.ceil( -(this.y + this.renderer.height * this.SURFACE_RATE) / this.vy ) * Math.PI) / 500; theta %= Math.PI * 2; this.offsetY = 40 * (theta <= Math.PI / 2 || theta >= (Math.PI * 3) / 2 ? -1 : 1); this.thresholdY = this.renderer.height / 2 + this.renderer.height * this.SURFACE_RATE * axis.rate; this.entityColor = this.renderer.context.createRadialGradient( 0, 40, 0, 0, 40, 80 ); this.entityColor.addColorStop( 0, 'hsl(330, 70%, ' + 50 * (0.3 + axis.rate) + '%)' ); context.save(); context.globalAlpha = this.opacity; context.fillStyle = this.shadowColor; context.strokeStyle = 'hsl(330, 30%,' + 40 * (0.3 + axis.rate) + '%)'; context.translate( axis.x, Math.max(axis.y, this.thresholdY + this.thresholdY - axis.y) ); context.rotate(Math.PI - this.theta); context.scale(axis.rate * -Math.sin(this.phi), axis.rate); context.translate(0, this.offsetY); this.renderCherry(context, axis); context.restore(); } context.save(); context.fillStyle = this.entityColor; context.strokeStyle = 'hsl(330, 40%,' + 70 * (0.3 + axis.rate) + '%)'; context.translate( axis.x, axis.y + Math.abs(this.SINK_OFFSET * Math.sin(this.psi) * axis.rate) ); context.rotate(this.theta); context.scale(axis.rate * Math.sin(this.phi), axis.rate); context.translate(0, this.offsetY); this.renderCherry(context, axis); context.restore(); if (this.y <= -this.renderer.height / 4) { if (!this.endTheta) { for ( var theta = Math.PI / 2, end = (Math.PI * 3) / 2; theta <= end; theta += Math.PI ) { if (this.theta < theta && this.theta + Math.PI / 200 > theta) { this.theta = theta; this.endTheta = true; break; } } } if (!this.endPhi) { for ( var phi = Math.PI / 8, end = (Math.PI * 7) / 8; phi <= end; phi += (Math.PI * 3) / 4 ) { if (this.phi < phi && this.phi + Math.PI / 200 > phi) { this.phi = Math.PI / 8; this.endPhi = true; break; } } } } if (!this.endTheta) { if (axis.y == this.thresholdY) { this.theta += (Math.PI / 200) * (this.theta < Math.PI / 2 || (this.theta >= Math.PI && this.theta < (Math.PI * 3) / 2) ? 1 : -1); } else { this.theta += Math.PI / 500; } this.theta %= Math.PI * 2; } if (this.endPhi) { if (this.rippleCount == this.MAX_RIPPLE_COUNT) { this.psi += this.dpsi; this.psi %= Math.PI * 2; } } 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> </body></html>🏠CSS样式代码@charset "utf-8";* { margin: 0; padding: 0;}body { max-width: 100%; min-width: 100%; height: 100%; background-size: cover; background-repeat: no-repeat; background-attachment: fixed; background-size: 100% 100%; position: absolute; margin-left: auto; margin-right: auto;}li { list-style: none;}.box { width: 200px; height: 200px; background-size: cover; background-repeat: no-repeat; background-attachment: fixed; background-size: 100% 100%; position: absolute; margin-left: 42%; margin-top: 22%; -webkit-transform-style: preserve-3d; -webkit-transform: rotateX(13deg); -webkit-animation: move 5s linear infinite;}.minbox { width: 100px; height: 100px; position: absolute; left: 50px; top: 30px; -webkit-transform-style: preserve-3d;}.minbox li { width: 100px; height: 100px; position: absolute; left: 0; top: 0;}.minbox li:nth-child(1) { background: url(../img/01.png) no-repeat 0 0; -webkit-transform: translateZ(50px);}.box:hover ol li:nth-child(3) { -webkit-transform: rotateX(-90deg) translateZ(300px); width: 400px; height: 400px; opacity: 0.8; left: -100px; top: -100px;}.box:hover ol li:nth-child(4) { -webkit-transform: rotateX(90deg) translateZ(300px); width: 400px; height: 400px; opacity: 0.8; left: -100px; top: -100px;}.box:hover ol li:nth-child(5) { -webkit-transform: rotateY(-90deg) translateZ(300px); width: 400px; height: 400px; opacity: 0.8; left: -100px; top: -100px;}.box:hover ol li:nth-child(6) { -webkit-transform: rotateY(90deg) translateZ(300px); width: 400px; height: 400px; opacity: 0.8; left: -100px; top: -100px;}@keyframes move { 0% { -webkit-transform: rotateX(13deg) rotateY(0deg); } 100% { -webkit-transform: rotateX(13deg) rotateY(360deg); }}五、🎁更多源码

1.如果我的博客对你有帮助 请 “👍点赞” “✍️评论” “💙收藏” 一键三连哦!

2.💗【👇🏻👇🏻👇🏻🉑关注我| 获取更多源码】 带您学习各种前端插件、3D炫酷效果、图片展示、文字效果、以及整站模板 、大学生毕业HTML模板 、等!

📣以上内容技术相关问题💌欢迎一起交流学习👇🏻👇🏻👇🏻

本文链接地址:https://www.jiuchutong.com/zhishi/297279.html 转载请保留说明!

上一篇:css鼠标移入变成小手(css鼠标移入移出切换事件)

下一篇:postman教程(postman操作流程)

  • 如何查看信息历史记录(怎样查找信息历史)

    如何查看信息历史记录(怎样查找信息历史)

  • 抖音怎么送别人人气票(抖音怎么送别人礼物)

    抖音怎么送别人人气票(抖音怎么送别人礼物)

  • 麒麟990和麒麟990 5G区别(麒麟990和麒麟9900的区别)

    麒麟990和麒麟990 5G区别(麒麟990和麒麟9900的区别)

  • 小米10miui12如何设置省电(小米10 12系统怎么刷回11系统)

    小米10miui12如何设置省电(小米10 12系统怎么刷回11系统)

  • 荣耀v30pro重量多少(华为荣耀v30pro重量多少克)

    荣耀v30pro重量多少(华为荣耀v30pro重量多少克)

  • 键盘调灯光是哪个键(键盘调灯光是哪个键联想)

    键盘调灯光是哪个键(键盘调灯光是哪个键联想)

  • 两个excel表格筛选出不同的内容怎么弄(两个excel表格筛选出不同的内容)

    两个excel表格筛选出不同的内容怎么弄(两个excel表格筛选出不同的内容)

  • 修改幻灯片内容的视图是(修改幻灯片内容的编辑 批注怎么弄)

    修改幻灯片内容的视图是(修改幻灯片内容的编辑 批注怎么弄)

  • 键盘皮肤声音怎么设置(键盘皮肤声音怎么设置华为)

    键盘皮肤声音怎么设置(键盘皮肤声音怎么设置华为)

  • 苹果11什么手机(苹果11什么手机膜好)

    苹果11什么手机(苹果11什么手机膜好)

  • 天猫精灵有啥用(天猫精灵有啥用途多少钱)

    天猫精灵有啥用(天猫精灵有啥用途多少钱)

  • 红米k30后盖是什么材质(红米k30后盖是什么)

    红米k30后盖是什么材质(红米k30后盖是什么)

  • 为什么开流量还那么卡(为什么开流量还那么卡vivoiqoo)

    为什么开流量还那么卡(为什么开流量还那么卡vivoiqoo)

  • 图像数字化的三个步骤(图像数字化的三要素包括)

    图像数字化的三个步骤(图像数字化的三要素包括)

  • qq发说说怎么@别人(qq发说说怎么别人空间不显示了)

    qq发说说怎么@别人(qq发说说怎么别人空间不显示了)

  • 华为手机应用签名异常怎么解决(华为手机应用签名在哪里)

    华为手机应用签名异常怎么解决(华为手机应用签名在哪里)

  • 小米lite是什么意思(小米lite价格)

    小米lite是什么意思(小米lite价格)

  • 光纤猫信号灯闪烁红色(光纤猫信号灯闪红灯)

    光纤猫信号灯闪烁红色(光纤猫信号灯闪红灯)

  • 光纤收发器tx和rx什么意思

    光纤收发器tx和rx什么意思

  • 苹果11为什么不显示电池百分比(苹果11为什么不能配对watch)

    苹果11为什么不显示电池百分比(苹果11为什么不能配对watch)

  • 微信运动不开网络能计步吗(微信运动不开网不能计步)

    微信运动不开网络能计步吗(微信运动不开网不能计步)

  • 快手极速版苹果手机怎么下载不了(快手极速版苹果版怎么没有赚钱)

    快手极速版苹果手机怎么下载不了(快手极速版苹果版怎么没有赚钱)

  • 在word2010文档中编辑表格有哪些操作(在word2010文档中输入复杂的数学公式执行什么命令)

    在word2010文档中编辑表格有哪些操作(在word2010文档中输入复杂的数学公式执行什么命令)

  • airpods可以用安卓手机吗(airpods可以用安卓充电吗)

    airpods可以用安卓手机吗(airpods可以用安卓充电吗)

  • max电池容量(14pro和14promax电池容量)

    max电池容量(14pro和14promax电池容量)

  • 手机卡里的联系人不见了怎么恢复(手机卡里的联系人不见了怎么办)

    手机卡里的联系人不见了怎么恢复(手机卡里的联系人不见了怎么办)

  • 一般纳税人商品混凝土税率
  • 代收的水资源税收入是否计入企业所得税
  • 企业购进软件系统后如何做账
  • 土地政策补贴
  • 所得税费用的确认方法
  • 商品流通企业应收账款很少的原因
  • 一般纳税人购买并销售免税货物所发生的运输费用
  • 叉车需要购置税吗
  • 水泥销售成本怎么算
  • 企业会计制准下增值税科目的核算
  • 非货物贸易核查项下
  • 去国外参加展览的英文
  • 以前年度固定资产入账错误怎么办?
  • 小规模纳税人不允许开具零税率发票
  • 月销售额不超10万,免征教育费附加分录
  • 购销行为是什么
  • 进口商品合同
  • 发出商品确认收入的条件
  • 租赁产生的成本有哪些
  • 实际发生坏账的账务处理分录
  • 物流公司进项票多了,可以帮人开票吗
  • 公司成本和费用过高怎么办
  • 办理企业土地证要多少钱
  • 怎么恢复系统win10
  • 送积分怎么做账
  • 税务局手续费返还
  • 什么叫市净率?它有何意义?
  • 公司之间往来借款利息怎么记账
  • php输出mysql
  • 税额差异会计分录
  • PHP:mb_list_encodings()的用法_mbstring函数
  • 吊兰怎么养才能开花
  • PHP:session_get_cookie_params()的用法_Session函数
  • 摊余成本计量的金融资产
  • 一般纳税人怎么交税
  • 增值税征税范围中的货物包括
  • 工资结算单什么时候签
  • 持有至到期投资减值准备
  • 借入长期借款的利息
  • 会计月末账务处理流程图
  • 项目中的问题
  • phpcurl模拟登录
  • 同一控制下企业合并和非同一控制下企业合并的区别
  • 长期股权投资投资收益计算
  • php面向对象和面向过程
  • python中time模块的用法
  • 企业所得税申报表在哪里打印
  • 研发费用加计扣除新税收政策
  • php 更新
  • 在dedecms中,如何模板建站
  • percona-toolkit对MySQL的复制和监控类操作教程
  • 报税报错了能否下月调整
  • 母公司借款给子公司如何做账
  • 用友t3怎么结转本年利润
  • 合并会计报表合并范围
  • 银行的存单丢失了可以补办吗
  • 工程履约保证金退还申请书
  • 委托加工应税消费品纳税义务发生时间
  • 行政单位工会经费
  • 员工餐补是放入福利费吗?
  • 银行结算卡年费多少
  • 错账的更正方法有哪些
  • sql server如何进行安全设置
  • 在mac上如何使用微信
  • Mac下mysql 5.7.13 安装配置方法图文教程
  • 苹果序列号查询
  • 电脑系统文件受损
  • GhostXP装机版v3.0
  • linux 互传文件
  • win10右键菜单不显示
  • js让按钮不能点击
  • ip地址一键切换
  • PHP+jquery+ajax实现分页
  • node怎么用
  • jquery的过滤器用于指定什么东西
  • jQuery插件扩展extend的简单实现原理
  • 国家税务总局发票查验平台网络异常
  • 个税汇算清缴申报方式选哪个
  • 消费税的税目有什么
  • 山西税务体检医院
  • 免责声明:网站部分图片文字素材来源于网络,如有侵权,请及时告知,我们会第一时间删除,谢谢! 邮箱:opceo@qq.com

    鄂ICP备2023003026号

    网站地图: 企业信息 工商信息 财税知识 网络常识 编程技术

    友情链接: 武汉网站建设