JS implements layout conversion in animation

JS implements layout conversion in animation

When writing animations with JS, layout conversion is often used, that is, converting relative positioning to absolute positioning before movement, and then executing the animation function. Here is a demo of layout conversion implemented by native JS. The effect is as follows:

The following is the code implementation, everyone is welcome to copy, paste and comment.

<!DOCTYPE html>
<html>
 
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Native JS implements layout conversion in animation</title>
    <style>
        * {
            margin: 0;
            padding: 0;
        }
 
        #ul1 {
            width: 366px;
            margin: 0 auto;
            position: relative;
        }
 
        #ul1 li {
            list-style: none;
            width: 100px;
            height: 100px;
            background: #CCC;
            border: 1px solid black;
            float: left;
            margin: 10px;
            z-index: 1;
        }
    </style>
    <!-- Motion Frame -->
    <script>
        // Get the value of the specified style function getStyle(obj, attr) {
            if (obj.currentStyle) {
                return obj.currentStyle[attr];
            } else {
                return getComputedStyle(obj, false)[attr];
            }
        };
        //Motion function function startMove(obj, json, fn) {
            clearInterval(obj.timer);
            obj.timer = setInterval(function () {
                var bStop = true;
                for (var attr in json) {
                    var iCur = 0;
                    if (attr == 'opacity') {
                        iCur = parseInt(parseFloat(getStyle(obj, attr)) * 100);
                    } else {
                        iCur = parseInt(getStyle(obj, attr));
                    }
                    var iSpeed ​​= (json[attr] - iCur) / 8;
                    iSpeed ​​= iSpeed ​​> 0 ? Math.ceil(iSpeed) : Math.floor(iSpeed);
                    if (iCur != json[attr]) {
                        bStop = false;
                    }
                    if (attr == 'opacity') {
                        obj.style.filter = 'alpha(opacity:' + (iCur + iSpeed) + ')';
                        obj.style.opacity = (iCur + iSpeed) / 100;
                    } else {
                        obj.style[attr] = iCur + iSpeed ​​+ 'px';
                    }
                }
 
                if (bStop) {
                    clearInterval(obj.timer);
                    if (fn) {
                        fn();
                    }
                }
            }, 30)
        }
    </script>
    <!-- Add event -->
    <script>
        window.onload = function () {
            var oUl = document.getElementById('ul1');
            var aLi = oUl.getElementsByTagName('li');
            var iMinZindex = 2;
            var i = 0;
 
            // 1. Layout conversion for (i = 0; i < aLi.length; i++) {
                //aLi[i].innerHTML='left:'+aLi[i].offsetLeft+', top:'+aLi[i].offsetTop;
                aLi[i].style.left = aLi[i].offsetLeft + 'px';
                aLi[i].style.top = aLi[i].offsetTop + 'px';
            }
 
            // Two loops are required for (i = 0; i < aLi.length; i++) {
                aLi[i].style.position = 'absolute';
                //In the first loop, the offset value has already calculated the original margin value, so it needs to be cleared here aLi[i].style.margin = '0';
            }
 
            // 2. Add event for (i = 0; i < aLi.length; i++) {
 
                aLi[i].onmouseover = function () {
                    //Let the current zIndex continue to increase to prevent stacking this.style.zIndex = iMinZindex++;
                    startMove(this, {
                        width: 200,
                        height: 200,
                        marginLeft: -50,
                        marginTop: -50
                    });
                };
 
                aLi[i].onmouseout = function () {
                    startMove(this, {
                        width: 100,
                        height: 100,
                        marginLeft: 0,
                        marginTop: 0
                    });
                };
            }
        };
    </script>
 
</head>
 
<body>
    <ul id="ul1">
        <li></li>
        <li></li>
        <li></li>
        <li></li>
        <li></li>
        <li></li>
        <li></li>
        <li></li>
        <li></li>
    </ul>
</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:
  • Vue.js implements grid list layout conversion method

<<:  Tutorial for installing MySQL 8.0.18 under Windows (Community Edition)

>>:  Summary of Linux file basic attributes knowledge points

Recommend

An article tells you how to write a Vue plugin

Table of contents What is a plugin Writing plugin...

10 Underused or Misunderstood HTML Tags

Here are 10 HTML tags that are underused or misun...

How to set up the terminal to run applications after Ubuntu starts

1. Enter start in the menu bar and click startup ...

Element Timeline implementation

Table of contents Components - Timeline Custom no...

Detailed steps to install MySQL 5.6 X64 version under Linux

environment: 1. CentOS6.5 X64 2.mysql-5.6.34-linu...

Summary of Linux sftp command usage

sftp is the abbreviation of Secure File Transfer ...

Implementing user registration function with js

This article example shares the specific code of ...

Detailed explanation of the principle of js Proxy

Table of contents What is Proxy Mode? Introducing...

Practice of deploying web applications written in Python with Docker

Table of contents 1. Install Docker 2. Write code...

Detailed explanation of MySQL sql99 syntax inner join and non-equivalent join

#Case: Query employee salary levels SELECT salary...

Detailed tutorial on installing and using Kong API Gateway with Docker

1 Introduction Kong is not a simple product. The ...

Example to explain the size of MySQL statistics table

Counting the size of each table in each database ...

Nodejs converts JSON string into JSON object error solution

How to convert a JSON string into a JSON object? ...

Hello dialog box design experience sharing

"What's wrong?" Unless you are accus...

An exploration of the JS operator in problem

Here's the thing: Everyone knows about "...