What are the attributes that can achieve panning effect in css3

WBOY
Release: 2021-12-15 10:07:58
Original
3827 people have browsed it

The attribute that can achieve the translation effect in CSS3 is "transform". The transform attribute can be used with the translate() function to perform translation operations on elements. The syntax is "element {transform:translate(horizontal translation value, vertical translation value);}".

What are the attributes that can achieve panning effect in css3

The operating environment of this tutorial: Windows 10 system, CSS3&&HTML5 version, Dell G3 computer.

What are the attributes that can achieve translation effects in css3

In css3, you can use the transform attribute with the translate() function to achieve elements Panning effect.

The transform property applies a 2D or 3D transformation to an element. This property allows us to rotate, scale, move or tilt the element.

The translate() function is used to define the 2D transformation of elements. That is the effect of translation.

The syntax is as follows:

元素{transform:translate(横向平移值,竖向平移值);}
Copy after login

The example is as follows:

      Document  
  
Copy after login

Output result:

When the transform:translate(100px,100px); style is not added

What are the attributes that can achieve panning effect in css3

Add transform:translate(100px,100px); after style:

What are the attributes that can achieve panning effect in css3

(Learn Video sharing:css video tutorial)

The above is the detailed content of What are the attributes that can achieve panning effect in css3. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
css
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!