How to use translate and transition in CSS3

How to use translate and transition in CSS3

I always feel that translate and transition are very powerful and I can never learn them. In fact, I am reluctant to understand them. I spent less than half an hour reading the documentation of the interface and got a general understanding of it. The following is an example. You can download it and run it yourself.

<!DOCTYPE html>
<html>
<head>
  <title>Translate and transition</title>
</head>
<body>
<style type="text/css">
  div {
    width: 100px;
    height: 75px;
    background-color: red;
    border: 1px solid black;
  }

  div#translate {
    transition: all 2s;
    -ms-transition: all 2s;
    -webkit-transition: all 2s;
  }

  div#translate:hover{
    transform: translate(50px, 100px);
    -ms-transform: translate(50px, 100px);
    -webkit-transform: translate(50px, 100px);
  }
</style>
<div>Hello, This is a Div element</div>
<div id='translate'>Hello, This is another Div element</div>
</body>
</html>

For a demo, please click here[/css3/translate.html]

translate(a, b): In official terms, it is called 2D transfer, which is actually the movement of the x-axis and y-axis on the plane. The reason why we use so many terms is because we are not well educated and do not want us to understand it easily.
a - Move a unit distance horizontally (left and right), that is, on the x-axis. For example, if it is 10px, then move 10px. Positive values ​​move to the right, and negative values ​​move to the left. b - Move b unit distance vertically (up and down), that is, on the y-axis. For example, if it is 50px, then move 10px. Positive values ​​move downward, and negative values ​​move upward.

The starting point is in the upper left corner, but if the element position is set to a non-origin point at the beginning, it is another matter, that is, calculation is done on an element basis

Origin (0,0) ----------
|
|
|

transition animation transition

transition: property duration timing-function delay

property - css property

duration - animation execution duration. If it is 0, the animation will not be executed.

The default timing-function animation execution mode is ease

delay - animation delay execution time default is 0

These four are attributes. Don’t think I wrote other attributes. For details, please refer to the document [https://developer.mozilla.org/zh-CN/docs/Web/CSS/transition]

Summarize

This is the end of this article about how to use translate and transition in CSS3. For more information about how to use CSS3 translate transition, please search previous articles on 123WORDPRESS.COM or continue to browse the related articles below. We hope that everyone will support 123WORDPRESS.COM in the future!

<<:  Dealing with the problem of notes details turning gray on web pages

>>:  Attributes in vue v-for loop object

Recommend

Solution to the error when installing Docker on CentOS version

1. Version Information # cat /etc/system-release ...

The iframe refresh method is more convenient

How to refresh iframe 1. To refresh, you can use j...

Detailed explanation of VUE's data proxy and events

Table of contents Review of Object.defineProperty...

MySQL Community Server compressed package installation and configuration method

Today, because I wanted to install MySQL, I went ...

Analysis of the cause of docker error Exited (1) 4 minutes ago

Docker error 1. Check the cause docker logs nexus...

SQL serial number acquisition code example

This article mainly introduces the sql serial num...

Detailed explanation of the wonderful uses of SUID, SGID and SBIT in Linux

Preface Linux's file permission management is...

Detailed explanation of the use of MySQL group links

Grouping and linking in MYSQL are the two most co...

One minute to experience the smoothness of html+vue+element-ui

Technology Fan html web page, you must know vue f...

Vue+flask realizes video synthesis function (drag and drop upload)

Table of contents We have written about drag and ...

In-depth understanding of React Native custom routing management

Table of contents 1. Custom routing 2. Tab naviga...

How to open a page in an iframe

Solution: Just set the link's target attribute...

Summary of some tips for bypassing nodejs code execution

Table of contents 1. child_process 2. Command exe...

Centering the Form in HTML

I once encountered an assignment where I was give...

How to modify server uuid in Mysql

Source of the problem: If the slave server is the...