Native JS implements a very good-looking counter

Native JS implements a very good-looking counter

Today I will share with you a good-looking counter implemented with native JS. The effect is as follows:

The following is the code implementation, you are welcome to copy, paste and collect it.

<!DOCTYPE html>
<html lang="en">
 
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Native JS implements a good-looking counter</title>
    <style>
        * {
            font-family: 'Microsoft YaHei', sans-serif;
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
 
        body {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            background: #000d0f;
        }
 
        .container {
            position: relative;
            width: 80px;
            height: 50px;
            border-radius: 40px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            transition: 0.5s;
        }
 
        .container:hover {
            width: 120px;
            border: 2px solid rgba(255, 255, 255, 1);
        }
 
        .container .next {
            position: absolute;
            top: 50%;
            right: 30px;
            display: block;
            width: 12px;
            height: 12px;
            border-top: 2px solid #fff;
            border-left: 2px solid #fff;
            z-index: 1;
            transform: translateY(-50%)rotate(135deg);
            cursor: pointer;
            transition: 0.5s;
            opacity: 0;
        }
 
        .container:hover .next {
            opacity: 1;
            right: 20px;
        }
 
        .container .prev {
            position: absolute;
            top: 50%;
            left: 30px;
            display: block;
            width: 12px;
            height: 12px;
            border-top: 2px solid #fff;
            border-left: 2px solid #fff;
            z-index: 1;
            transform: translateY(-50%)rotate(315deg);
            cursor: pointer;
            transition: 0.5s;
            opacity: 0;
        }
 
        .container:hover .prev {
            opacity: 1;
            left: 20px;
        }
 
        #box span {
            position: absolute;
            display: none;
            width: 100%;
            height: 100%;
            text-align: center;
            line-height: 46px;
            color: #00deff;
            font-size: 24px;
            font-weight: 700;
            user-select: none;
        }
 
        #box span:nth-child(1) {
            display: initial;
        }
    </style>
</head>
 
<body>
    <div class="container">
        <div class="next" onclick="nextNum()"></div>
        <div class="prev" onclick="prevNum()"></div>
        <div id="box">
            <span>0</span>
        </div>
    </div>
 
    <script>
        var numbers = document.getElementById('box')
        for (let i = 0; i < 100; i++) {
            let span = document.createElement('span')
            span.textContent = i
            numbers.appendChild(span)
        }
        let num = numbers.getElementsByTagName('span')
        let index = 0
 
        function nextNum() {
            num[index].style.display = 'none'
            index = (index + 1) % num.length
            num[index].style.display = 'initial'
        }
        function prevNum() {
            num[index].style.display = 'none'
            index = (index - 1 + num.length) % num.length
            num[index].style.display = 'initial'
        }
    </script>
</body>
 
</html>

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • js counter code
  • JavaScript implements the basic method of counter
  • How to create a simple counter using JavaScript
  • The counter automatically increases by 1 per second under javascript
  • Help me write a counter using JAVASCRIPT
  • JS implements a simple counter

<<:  Summary of commonly used SQL in MySQL operation tables

>>:  Centos7.3 automatically starts or executes specified commands when booting

Recommend

Details on using regular expressions in MySQL

Table of contents 1. Introduction 2. Prepare a pr...

Mysql 5.6 "implicit conversion" causes index failure and inaccurate data

background When performing a SQL query, I tried t...

How to implement Docker to dynamically pass parameters to Springboot projects

background Recently, some friends who are new to ...

Enabling or disabling GTID mode in MySQL online

Table of contents Basic Overview Enable GTID onli...

A quick solution to the problem of PC and mobile adaptation

When making a web page, we usually need to consid...

Example code for Html layered box-shadow effect

First, let’s take a look at the picture: Today we...

HTML table markup tutorial (9): cell spacing attribute CELLSPACING

A certain distance can be set between cells in a ...

Full analysis of Vue diff algorithm

Table of contents Preface Vue update view patch s...

Tips for turning pixels into comprehensive brand experiences

Editor: This article discusses the role that inte...

Summary of new usage examples of computed in Vue3

The use of computed in vue3. Since vue3 is compat...

Zookeeper unauthorized access test problem

Table of contents Preface Detect Zookeeper servic...

Detailed explanation of the command mode in Javascript practice

Table of contents definition structure Examples C...

Web design reference firefox default style

Although W3C has established some standards for HT...

HTML table tag tutorial (21): row border color attribute BORDERCOLOR

To beautify the table, you can set different bord...