Native JS to implement sharing sidebar

Native JS to implement sharing sidebar

This article shares a sharing sidebar implemented with native JS. The effect is as follows:

The following is the code implementation for your convenience to copy and paste.

<!DOCTYPE html>
<html>
 
<head lang="en">
    <meta charset="UTF-8">
    <title>Share to effect</title>
    <style>
        #share {
            position: fixed;
            width: 100px;
            height: 200px;
            background-color: lightblue;
            left: -100px;
            top: 100px;
        }
 
        #share span {
            width: 20px;
            height: 60px;
            line-height: 20px;
            text-align: center;
            left: 100px;
            top: 70px;
            position: absolute;
            background-color: yellow;
        }
    </style>
 
</head>
 
<body>
 
    <div id="share">
        <span>Share to</span>
    </div>
 
    <script>
        // Get the element var share = document.getElementById("share");
        // Set the event to share
        share.onmouseover = function () {
            animate(this, "left", 0);
        };
        share.onmouseout = function () {
            animate(this, "left", -100);
        };
 
        // animate motion function function animate(tag, attr, target) {
            clearInterval(tag.timer);
            tag.timer = setInterval(function () {
 
                // Get the current state of an attribute // Because it has units, it needs to be rounded // parseInt("hehe") => NaN NaN || 0
                // In order to deal with the problem of auto conversion to NaN, we use short-circuit operation to ensure the robustness of the program var leader = parseInt(getStyle(tag, attr)) || 0;
 
                // Part of the easing formula is changing the value of step var step = (target - leader) / 10;
 
                // Since offsetLeft will be rounded when taking values, if step is relatively small, it will cause problems with motion. // Change the rounding method according to the positive or negative number of steps. step = step > 0 ? Math.ceil(step) : Math.floor(step);
 
                // Easing formula leader = leader + step;
 
                // Set to a certain attribute tag.style[attr] = leader + "px";
 
                // Check if you have reached the specified position if (leader == target) {
                    clearInterval(tag.timer);
                }
            }, 17);
        }
 
        // Used to get the style attribute value of a tag // with unit function getStyle(tag, attr) {
            // Check which one is supported // box.currentStyle, if it does not exist, the value is undefined
            // getComputedStyle if the browser does not support it. This is equivalent to a variable not being declared, reporting an error if (tag.currentStyle) {
                // ie supports return tag.currentStyle[attr];
            } else {
                // Standard method return getComputedStyle(tag, null)[attr];
            }
        }
 
    </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:
  • Implement seamless scrolling in JavaScript and share to the sidebar example code
  • JS motion framework sharing sidebar animation example
  • How to implement the fixed effect of the blog sidebar module sliding with the scroll bar (js+jquery, etc.)
  • JavaScript to implement dynamic sidebar code
  • JavaScript to achieve a simple hidden sidebar function example
  • Detailed explanation of javascript implementation of dynamic sidebar example
  • Using js to write a responsive sidebar
  • JS implements the sidebar mouse over pop-up box + buffer effect
  • Implementing mobile sidebar sliding effects based on slideout.js
  • js+css to achieve full screen sidebar

<<:  HTML table tag tutorial (31): cell width and height attributes WIDTH, HEIGHT

>>:  A simple way to build a Docker environment

Recommend

Vue Virtual DOM Quick Start

Table of contents Virtual DOM What is virtual dom...

Express implements login verification

This article example shares the specific code for...

How to implement one-click deployment of nfs in linux

Server Information Management server: m01 172.16....

Two ways to exit bash in docker container under Linux

If you want to exit bash, there are two options: ...

Vue uses ECharts to implement line charts and pie charts

When developing a backend management project, it ...

Detailed analysis of the chmod command to modify file permissions under Linux

Use the Linux chmod command to control who can ac...

Detailed explanation of character sets and validation rules in MySQL

1Several common character sets In MySQL, the most...

Essential knowledge for web development interviews and written tests (must read)

The difference between inline elements and block-...

How to insert 10 million records into a MySQL database table in 88 seconds

The database I use is MySQL database version 5.7 ...

Solution to the problem that mysql local login cannot use port number to log in

Recently, when I was using Linux to log in locall...

Introduction to MySQL role functions

Table of contents Preface: 1. Introduction to rol...

Recommend a cool flashing alarm button

The effect is as follows: The code is as follows ...

Solution for forgetting the root password of MySQL5.7 under Windows 8.1

【background】 I encountered a very embarrassing th...

Detailed explanation of execution context and call stack in JavaScript

Table of contents 1. What is the execution contex...