位置: 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操作流程)

  • 华为鸿蒙补电是什么(华为鸿蒙 补电)

    华为鸿蒙补电是什么(华为鸿蒙 补电)

  • 阿里云邮箱如何在邮箱内修改密码(阿里云邮箱如何登录)

    阿里云邮箱如何在邮箱内修改密码(阿里云邮箱如何登录)

  • 荣耀手机怎么看应用使用时长(荣耀手机怎么看出厂日期查询)

    荣耀手机怎么看应用使用时长(荣耀手机怎么看出厂日期查询)

  • 粤通卡etc蓝牙连接不上(etc粤卡通蓝牙开关)

    粤通卡etc蓝牙连接不上(etc粤卡通蓝牙开关)

  • 喜马拉雅网络请求失败(喜马拉雅 发生网络错误,您可尝试关闭)

    喜马拉雅网络请求失败(喜马拉雅 发生网络错误,您可尝试关闭)

  • qq加好友问题怎么设置(qq加好友问题怎么破解手机版)

    qq加好友问题怎么设置(qq加好友问题怎么破解手机版)

  • freesync有什么用(freesync作用大吗)

    freesync有什么用(freesync作用大吗)

  • Excel 2010的工作簿默认有____个工作表(Excel2010的工作簿的扩展名是( ))

    Excel 2010的工作簿默认有____个工作表(Excel2010的工作簿的扩展名是( ))

  • oppor17视频通话特效在哪

    oppor17视频通话特效在哪

  • nova5pro nova6 区别(nova5pro和6)

    nova5pro nova6 区别(nova5pro和6)

  • 红米k30pro屏幕供应商(红米k30pri屏幕)

    红米k30pro屏幕供应商(红米k30pri屏幕)

  • boss投诉对方能看见吗(boss上被投诉了可以第一时间知道吗)

    boss投诉对方能看见吗(boss上被投诉了可以第一时间知道吗)

  • 哔哩哔哩的游戏中心去哪了(哔哩哔哩的游戏账号怎么卖)

    哔哩哔哩的游戏中心去哪了(哔哩哔哩的游戏账号怎么卖)

  • 苹果怎么用另一个号发短信(苹果怎么用另一个卡发短信)

    苹果怎么用另一个号发短信(苹果怎么用另一个卡发短信)

  • 抖音号一天可以关注多少人(抖音号一天可以私信多少人)

    抖音号一天可以关注多少人(抖音号一天可以私信多少人)

  • 趣头条永久注销还能恢复吗(趣头条永久注销怎么再次注册)

    趣头条永久注销还能恢复吗(趣头条永久注销怎么再次注册)

  • 苹果蓝牙耳机怎么下一曲(苹果蓝牙耳机怎么使用)

    苹果蓝牙耳机怎么下一曲(苹果蓝牙耳机怎么使用)

  • 天猫扣分什么时候清零(天猫扣分年底会清零吗)

    天猫扣分什么时候清零(天猫扣分年底会清零吗)

  • win10账户锁定多久解除(win10账户锁定怎么办)

    win10账户锁定多久解除(win10账户锁定怎么办)

  • Win10运行红色警戒提示不兼容怎么办?(win10运行红色警戒2卡顿)

    Win10运行红色警戒提示不兼容怎么办?(win10运行红色警戒2卡顿)

  • win11系统怎么更新驱动程序? win11驱动程序更新的五种方法(Win11系统怎么更换桌面壁纸)

    win11系统怎么更新驱动程序? win11驱动程序更新的五种方法(Win11系统怎么更换桌面壁纸)

  • ausearch命令  检索审计记录(auth命令)

    ausearch命令 检索审计记录(auth命令)

  • python输入成绩求平均分(python输入三科成绩)

    python输入成绩求平均分(python输入三科成绩)

  • 房产税和土地使用税每年都要交吗
  • 汇算清缴时发现去年的成本少确认了报表怎么填列
  • 不征税发票需要预缴税款吗
  • 工程结算是含税还是不含税
  • 行政职工福利费包括哪些内容呢
  • 公对私转账没有到账怎么查询
  • 企业持有到期债券的风险
  • 企业退回企业所得税分录
  • 红字发票冲销的销项税怎么处理
  • 发票现金支付的做账增值税
  • 收保险赔偿款如何处理?
  • 收到托收凭证怎么填写
  • 应交税费账户期末借方余额反映的是
  • 行政诉讼的适用情况
  • 年会奖金多少合适
  • 企业怎么进行税务申报
  • 发票勾选可以勾选几次
  • 电子发票可以做报销凭证吗
  • 增值税零申报,企业所得税会有税额吗
  • 连年亏损的企业因为具有递延税金的优势
  • 利润表所得税费用怎么填
  • 财政指标文和拨款流程
  • 销售商品会计分录怎么写
  • 一般纳税人兼营不同税率的货物或应税劳务
  • 免征附加税费
  • windows全部禁用
  • 鸿蒙侧边菜单
  • 华为鸿蒙系统怎么样
  • 无形资产入股注意事项
  • PHP:Memcached::casByKey()的用法_Memcached类
  • linux操作系统为用户提供的接口为
  • 账务处理程序有什么
  • 增值税发票半年后能冲红
  • 计划成本法购入材料
  • 自定义修改器
  • 单位房转卖
  • pytorch :OSError: [WinError 1455] 页面文件太小,无法完成操作。 Error loading 【已解决】
  • 销售滞后税务处理
  • 基于什么意思
  • uniapp scroll-view 上下滑动
  • gpt参数
  • 慰问金计入什么预算科目
  • 未达起征点免税额是什么意思
  • 研发费用资本化可以加计扣除吗
  • php如何连接html
  • 5年前开的发票退货可以冲红吗?
  • mysql需要转义的特殊字符
  • 政府专项基金是什么
  • 异地预缴税款多交了有影响吗
  • 发票开9个点
  • sqlserver2012无法新建表
  • 增值税加计扣除最新政策2023
  • 实收资本是什么科目
  • 长期股权投资成本法会计处理
  • 其他业务收入的二级科目
  • 什么是内部报酬吗
  • 企业收到退回的银行汇票多余款项时,应作的会计处理有
  • 建筑企业合理避税
  • 付给外包公司的垃圾处理费会计分录
  • 房地产公司属于什么企业
  • 应收账款周转天数越大说明什么
  • 房地产开发企业分为几个等级
  • sqlserver高可用集群搭建
  • mysql常用关键字及其用法
  • Ubuntu系统怎么设置双屏
  • linux中使用fdisk命令进行硬盘分区
  • 格式化不干净
  • win10标准用户权限
  • cluster into
  • 深入理解计算机系统
  • cmd文件操作基本命令清单
  • unity3d操作
  • LinearLayout layout_weight解析
  • unity3d做游戏
  • android studio 1.2 安装配置教程(windows平台)
  • jqueryw3c
  • 北京税务总局
  • 云南省地方税务局关于城镇土地使用税
  • 存量房交易税费申报表是契证吗
  • 资源税百科
  • 免责声明:网站部分图片文字素材来源于网络,如有侵权,请及时告知,我们会第一时间删除,谢谢! 邮箱:opceo@qq.com

    鄂ICP备2023003026号

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

    友情链接: 武汉网站建设