当前位置:   article > 正文

马上跨年了,如何用代码写一个“跨年倒计时”呢?_新年倒计时代码html

新年倒计时代码html

前言

大家好,我是陈橘又青,再过两周就是新的一年了,作为一名有仪式感的程序员,今天我们就来制作一个简单的跨年倒计时小网页,祝看到的所有人新年快乐!(附上完整源码,需要的小伙伴自取即可)

效果展示

在这里插入图片描述


代码展示

<!doctype html>

<html>

<head>

<meta charset="utf-8">

<title>新年快乐</title>

<style>

body{

  overflow: hidden;

  margin: 0;

}

h1{

  position: fixed;

  top: 30%;

  left: 0;

  width: 100%;

  text-align: center;

  transform:translateY(-50%);

  font-family: 'Love Ya Like A Sister', cursive;

  font-size: 60px;

  color: ff64d9;

  padding: 0 20px;

}

h1 span{

  position: fixed;

  left: 0;

  width: 100%;

  text-align: center;

margin-top:30px;

    font-size:40px;

}

</style>

</head>

<body>

<h1 id="h1"></h1>

<canvas></canvas> 

<script>

var canvas = document.querySelector("canvas"),

  ctx = canvas.getContext("2d");

var ww,wh;

function onResize(){

  ww = canvas.width = window.innerWidth;

  wh = canvas.height = window.innerHeight;

}

ctx.strokeStyle = "red";

ctx.shadowBlur = 25;

ctx.shadowColor = "hsla(0, 100%, 60%,0.5)";

var precision = 100;

var hearts = [];

var mouseMoved = false;

function onMove(e){

  mouseMoved = true;

  if(e.type === "touchmove"){

    hearts.push(new Heart(e.touches[0].clientX, e.touches[0].clientY));

    hearts.push(new Heart(e.touches[0].clientX, e.touches[0].clientY));

  }

  else{

    hearts.push(new Heart(e.clientX, e.clientY));

    hearts.push(new Heart(e.clientX, e.clientY));

  }

}

var Heart = function(x,y){

  this.x = x || Math.random()*ww;

  this.y = y || Math.random()*wh;

  this.size = Math.random()*2 + 1;

  this.shadowBlur = Math.random() * 10;

  this.speedX = (Math.random()+0.2-0.6) * 8;

  this.speedY = (Math.random()+0.2-0.6) * 8;

  this.speedSize = Math.random()*0.05 + 0.01;

  this.opacity = 1;

  this.vertices = [];

  for (var i = 0; i < precision; i++) {

    var step = (i / precision - 0.5) * (Math.PI * 2);

    var vector = {

      x : (15 * Math.pow(Math.sin(step), 3)),

      y : -(13 * Math.cos(step) - 5 * Math.cos(2 * step) - 2 * Math.cos(3 * step) - Math.cos(4 * step))

    }

    this.vertices.push(vector);

  }

}

Heart.prototype.draw = function(){

  this.size -= this.speedSize;

  this.x += this.speedX;

  this.y += this.speedY;

  ctx.save();

  ctx.translate(-1000,this.y);

  ctx.scale(this.size, this.size);

  ctx.beginPath();

  for (var i = 0; i < precision; i++) {

    var vector = this.vertices[i];

    ctx.lineTo(vector.x, vector.y);

  }

  ctx.globalAlpha = this.size;

  ctx.shadowBlur = Math.round((3 - this.size) * 10);

  ctx.shadowColor = "hsla(0, 100%, 60%,0.5)";

  ctx.shadowOffsetX = this.x + 1000;

  ctx.globalCompositeOperation = "screen"

  ctx.closePath();

  ctx.fill()

  ctx.restore();

};

function render(a){

  requestAnimationFrame(render);

  hearts.push(new Heart())

  ctx.clearRect(0,0,ww,wh);

  for (var i = 0; i < hearts.length; i++) {

    hearts[i].draw();

    if(hearts[i].size <= 0){

      hearts.splice(i,1);

      i--;

    }

  }

}

onResize();

window.addEventListener("mousemove", onMove);

window.addEventListener("touchmove", onMove);

window.addEventListener("resize", onResize);

requestAnimationFrame(render);

window.onload=function starttime(){

        time(h1,'2023,01,01');    // 2023年元旦时间

        ptimer = setTimeout(starttime,1000); // 添加计时器

}

    function time(obj,futimg){

        var nowtime = new Date().getTime(); // 现在时间转换为时间戳

        var futruetime =  new Date(futimg).getTime(); // 未来时间转换为时间戳

        var msec = futruetime-nowtime; // 毫秒 未来时间-现在时间

        var time = (msec/1000);  // 毫秒/1000

        var day = parseInt(time/86400); // 天  24*60*60*1000

        var hour = parseInt(time/3600)-24*day;    // 小时 60*60 总小时数-过去的小时数=现在的小时数

        var minute = parseInt(time%3600/60); // 分 -(day*24) 以60秒为一整份 取余 剩下秒数 秒数/60 就是分钟数

        var second = parseInt(time%60);  // 以60秒为一整份 取余 剩下秒数

        obj.innerHTML="<br>距离2023年还有:<br>"+day+"天"+hour+"小时"+minute+"分"+second+"秒"+"<br><span>平安喜乐<br>万事顺遂</span>"

        return true;

    }

</script>

</body>

</html> 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162
  • 163
  • 164
  • 165
  • 166
  • 167
  • 168
  • 169
  • 170
  • 171
  • 172
  • 173
  • 174
  • 175
  • 176
  • 177
  • 178
  • 179
  • 180
  • 181
  • 182
  • 183
  • 184
  • 185
  • 186
  • 187
  • 188
  • 189
  • 190
  • 191
  • 192
  • 193
  • 194
  • 195
  • 196
  • 197
  • 198
  • 199
  • 200
  • 201
  • 202
  • 203
  • 204
  • 205
  • 206
  • 207
  • 208
  • 209
  • 210
  • 211
  • 212
  • 213
  • 214
  • 215
  • 216
  • 217
  • 218
  • 219
  • 220
  • 221
  • 222
  • 223
  • 224
  • 225
  • 226
  • 227
  • 228
  • 229
  • 230
  • 231
  • 232
  • 233
  • 234
  • 235
  • 236
  • 237
  • 238
  • 239
  • 240
  • 241
  • 242
  • 243
  • 244
  • 245
  • 246
  • 247
  • 248
  • 249
  • 250
  • 251
  • 252
  • 253
  • 254
  • 255
  • 256
  • 257
  • 258
  • 259
  • 260
  • 261
  • 262
  • 263
  • 264
  • 265
  • 266
  • 267
  • 268
  • 269
  • 270
  • 271

倒计时讲解

新年倒计时才是本页面的灵魂,很多小伙伴可能会好奇,如何设置倒计时呢?

其实只需要用当前window的事件来设置一个开始的事件。【倒计时时间=过年时间-当前时间

设置time为2023年1月1日,添加计时器从当前时间开始, 设置作用时间,将时间进行一个转换为当前的时间,并设置未来的一个时间戳随后定义一个变量来获取倒计时时间是多少。【未来时间-现在的时间】

再将获取到的时间毫秒为单位/1000来计算,小时数用总小时数-过去的小时数为现在的小时数,再以60秒为一整份,取余计算得到的就是分钟数在用当前的时间%60就是秒数,最后我们插入想要的信息将上述设置的变量插入进去即可!


背景音乐

src给一个背景的音乐链接(非本地音频需联网),使用下方代码即可。

 <audio id="bgmusic" src="https://y.qq.com/n/ryqq/player"></audio>
    <script type="text/javascript">
        document.addEventListener('DOMContentLoaded', function () {
            function audioAutoPlay() {
                var audio = document.getElementById('bgmusic');
                audio.play();
                document.addEventListener("WeixinJSBridgeReady", function () {
                    audio.play();
                    }, false);
                 }
                 audioAutoPlay();
                 });
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12

在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/132720
推荐阅读