赞
踩
这是我们在一起的第一个七夕,曾经也想过自己写一个东西送给她(一直认为亲手做礼物是最有意义的),现在终于实现了。虽然不是还有很多不足的地方。但女朋友看了还是很开心的。不过她第一反应居然是问我怎么写的hhh。狗粮喂足了,现在开始认真了。
这个没啥说的li标签而已
直接用Bootstrap框架
恋爱天数用js自动算 点击相应的模块定位到对应的部分内容展示
这部分图片+日期 我觉得还蛮好看的
照片墙就不展示了 发挥自己的想象摆hhh
表达你们的爱意吧!hhh
用Bootstrap框架稍微改动一下
1.计算恋爱天数的js
<script type="text/javascript"> //得到时间并写入div function getDate(){ var date1= '2019/04/05 00:00:00'; //开始时间 var date2 = new Date(); //结束时间 var date3 = date2.getTime() - new Date(date1).getTime(); //时间差的毫秒数 //------------------------------ //计算出相差天数 var days=Math.floor((date3/(24*3600*1000))+1) //计算出小时数 //var leave1=date3%(24*3600*1000) //计算天数后剩余的毫秒数 //var hours=Math.floor(leave1/(3600*1000)) //计算相差分钟数 //var leave2=leave1%(3600*1000) //计算小时数后剩余的毫秒数 //var minutes=Math.floor(leave2/(60*1000)) //计算相差秒数 //var leave3=leave2%(60*1000) //计算分钟数后剩余的毫秒数 //var seconds=Math.round(leave3/1000) //获取当前时间 // var date = new Date(); // //格式化为本地时间格式 // var date1 = date.toLocaleString(); //获取div var div1 = document.getElementById("times"); //将时间写入div div1.innerHTML = "♥甜甜的恋爱第"+days+"天♥"; } //使用定时器每秒向div写入当前时间 setInterval("getDate()",1000); </script>
2.鼠标变成小爱心
注意是ico格式
body{
cursor:url('../img/aixin.ico'),auto;
}
3.点击一直出现爱心的js
!function(e, t, a) { function r() { for (var e = 0; e < s.length; e++) s[e].alpha <= 0 ? (t.body.removeChild(s[e].el), s.splice(e, 1)) : (s[e].y--, s[e].scale += .004, s[e].alpha -= .013, s[e].el.style.cssText = "left:" + s[e].x + "px;top:" + s[e].y + "px;opacity:" + s[e].alpha + ";transform:scale(" + s[e].scale + "," + s[e].scale + ") rotate(45deg);background:" + s[e].color + ";z-index:99999"); requestAnimationFrame(r) } function n() { var t = "function" == typeof e.onclick && e.onclick; e.onclick = function(e) { t && t(), o(e) } } function o(e) { var a = t.createElement("div"); a.className = "heart", s.push({ el: a, x: e.clientX - 5, y: e.clientY - 5, scale: 1, alpha: 1, color: c() }), t.body.appendChild(a) } function i(e) { var a = t.createElement("style"); a.type = "text/css"; try { a.appendChild(t.createTextNode(e)) } catch(t) { a.styleSheet.cssText = e } t.getElementsByTagName("head")[0].appendChild(a) } function c() { return "rgb(" + ~~ (255 * Math.random()) + "," + ~~ (255 * Math.random()) + "," + ~~ (255 * Math.random()) + ")" } var s = []; e.requestAnimationFrame = e.requestAnimationFrame || e.webkitRequestAnimationFrame || e.mozRequestAnimationFrame || e.oRequestAnimationFrame || e.msRequestAnimationFrame || function(e) { setTimeout(e, 1e3 / 60) }, i(".heart{width: 10px;height: 10px;position: fixed;background: #f00;transform: rotate(45deg);-webkit-transform: rotate(45deg);-moz-transform: rotate(45deg);}.heart:after,.heart:before{content: '';width: inherit;height: inherit;background: inherit;border-radius: 50%;-webkit-border-radius: 50%;-moz-border-radius: 50%;position: fixed;}.heart:after{top: -5px;}.heart:before{left: -5px;}"), n(), r() } (window, document);
最后附上下载链接
https://download.csdn.net/download/qq_44795706/12045981
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。