search
HomeWeb Front-endCSS TutorialThe animation attribute directly implements the carousel method

This time I will bring you the method of directly implementing the carousel using the animation attribute. What are the precautions for implementing the carousel using the animation attribute? The following is a practical case, let’s take a look at it.

Introduction to animation:

The animation property of CSS3 can be used to control each step of the animation by controlling key frames just like Flash animation. More complex animation effects. The animation effect achieved by ainimation mainly consists of two parts:

1) Declare an animation through frames similar to those in Flash animation;

2) Call the animation declared by key frames in the animation attribute.

animation attribute value:

animation attribute is a shorthand attribute

Syntax: animation: name duration timing-function delay iteration-count

direction;

The six animation attributes set by animation:

animation-name: stipulates that it needs to be bound The keyframe name assigned to the selector. Values:

none: (Default) Specifies no animation effect (can be used to override animations from the cascade).

keyframename: Specifies the name of the keyframe that needs to be bound to the selector.

animation-duration: Specifies the time it takes to complete the animation, in seconds or milliseconds. Value:

time: Specifies the time it takes to complete the animation. The default value is 0, which means no animation effect.

animation-timing-function: Specifies the speed curve of animation. Value:

ease: Default. The animation starts at a slow speed, then speeds up, then slows down before ending.

linear: The speed of the animation is the same from beginning to end.

ease-in: The animation starts at a low speed.

ease-out: The animation ends at a low speed.

ease-in-out: The animation starts and ends at a slow speed.

cubic-bezier(n,n,n,n): Define your own values ​​in the cubic-bezier function. Possible values ​​are numeric values ​​from 0 to 1.

animation-delay: Specifies the delay before the animation starts. Values:

time: (optional) Defines the time to wait before starting the animation, in seconds or milliseconds. The default value is 0.

animation-iteration-count: Specifies the number of times the animation should be played. Value:

n: The value that defines the number of animation playback times.

infinite: Specifies that the animation should be played infinitely.

animation-direction: Specifies whether the animation should be played in reverse in turn. Value:

normal: default value. The animation should play normally.

alternate: The animation should be played in reverse in turn.

animation animation implementation carousel chart

nbsp;html>


    <meta>
    <title>图片轮换</title>
    <style>
        p,img{
            margin: 0;
            padding: 0;
        }
        .p_first{
            width: 1000px;
            height: 300px;
            margin-top: 100px;
            margin-left: 250px;
            overflow: hidden;
        }
        .p_second{
            width: 4000px;
            position: relative;
            animation: myimg 12s linear infinite normal; 
        }
        @keyframes myimg{
            0{
                left: 0;
            }
            5%{
                left: 0;
            }
            30%{
                left: -1000px;
            }
            35%{
                left: -1000px;
            }
            60%{
                left: -2000px;
            }
            65%{
                left: -2000px;
            }
            95%{
                left: -3000px;
            }
            100%{
                left: -3000px;
            }
        }
    </style>


    <p>
        </p><p>
            <img  src="/static/imghwm/default1.png" data-src="images/011-1.jpg" class="lazy" alt="The animation attribute directly implements the carousel method" ><img  src="/static/imghwm/default1.png" data-src="images/011-2.jpg" class="lazy" alt="The animation attribute directly implements the carousel method" ><img  src="/static/imghwm/default1.png" data-src="images/011-3.jpg" class="lazy" alt="The animation attribute directly implements the carousel method" ><img  src="/static/imghwm/default1.png" data-src="images/011-1.jpg" class="lazy" alt="The animation attribute directly implements the carousel method" >
        </p>
    

Picture tags should be placed on the same line, otherwise there will be gaps between the pictures.

I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the php Chinese website!

Recommended reading:

Detailed explanation of the use of pointer-events in css3

Detailed explanation of the use of focus-within

The above is the detailed content of The animation attribute directly implements the carousel method. For more information, please follow other related articles on the PHP Chinese website!

Statement
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
如何加速Windows 11中的动画效果:2种方法解析如何加速Windows 11中的动画效果:2种方法解析Apr 24, 2023 pm 04:55 PM

当微软推出Windows11时,它带来了许多变化。其中一项更改是增加了用户界面动画的数量。一些用户想要改变事物的出现方式,他们必须想办法去做。拥有动画让用户感觉更好、更友好。动画使用视觉效果使计算机看起来更具吸引力和响应能力。其中一些包括几秒钟或几分钟后的滑动菜单。计算机上有许多动画会影响PC性能、减慢速度并影响您的工作。在这种情况下,您必须关闭动画。本文将介绍用户可以提高其在PC上的动画速度的几种方法。您可以使用注册表编辑器或您运行的自定义文件来应用更改。如何提高Windows11动画的

如何使用CSS实现元素的旋转背景图动画效果如何使用CSS实现元素的旋转背景图动画效果Nov 21, 2023 am 09:05 AM

如何使用CSS实现元素的旋转背景图动画效果背景图动画效果可以增加网页的视觉吸引力和用户体验。本文将介绍如何使用CSS实现元素的旋转背景图动画效果,并提供具体的代码示例。首先,我们需要准备一张背景图,可以是任何你喜欢的图片,例如一张太阳或者电风扇的图片。将该图片保存并命名为“bg.png”。接下来,创建一个HTML文件,并在文件中添加一个div元素,将其设置为

如何在PHP中实现SEO优化如何在PHP中实现SEO优化May 20, 2023 pm 01:30 PM

随着互联网的发展,SEO(SearchEngineOptimization,搜索引擎优化)已经成为了网站优化的重要一环。如果您想要使您的PHP网站在搜索引擎中获得更高的排名,就需要对SEO的内容有一定的了解了。本文将会介绍如何在PHP中实现SEO优化,内容包括网站结构优化、网页内容优化、外部链接优化,以及其他相关的优化技巧。一、网站结构优化网站结构对于S

如何在PHP中实现ERP系统如何在PHP中实现ERP系统May 20, 2023 pm 06:21 PM

随着电子商务和企业管理的发展,许多企业开始寻找更好的方法来处理其日常业务流程。ERP系统是一种能够整合企业各种业务流程的软件工具。它提供了全面的功能,包括生产、销售、采购、库存、财务等方面,帮助企业提高效率、控制成本和提高客户满意度。而在PHP编程语言中,也能够实现ERP系统,这就需要我们掌握一些基本的知识和技术。下面,我们将深入探讨如何在PHP中实现ERP

如何在PHP中实现CRM系统如何在PHP中实现CRM系统May 20, 2023 pm 12:31 PM

随着企业的发展,客户管理变得越来越重要。为了提高客户满意度和忠诚度,越来越多的企业采用客户关系管理系统(CRM)来帮助其管理客户关系。而PHP是一种流行的编程语言,因其简单易学、灵活和强大而被广泛应用于Web开发。那么,如何在PHP中实现CRM系统呢?本文将为您介绍实现CRM系统的步骤和技巧。Step1:需求分析在开始开发CRM系统之前,您需要进行需求分析

在PHP中如何实现物联网开发?在PHP中如何实现物联网开发?May 12, 2023 am 11:51 AM

随着物联网技术的发展和普及,越来越多的应用场景需要使用PHP语言进行物联网开发。PHP作为一种广泛应用于Web开发的脚本语言,它的易学易用、开发速度快、可扩展性强等特点,使其成为开发物联网应用的一种优秀选择。本文将介绍在PHP中实现物联网开发的常用技术和方法。一、传输协议和数据格式物联网设备通常使用TCP/IP或UDP协议进行数据传输,而HTTP协议是一个优

Vue3中的transition函数:实现组件的动画过渡Vue3中的transition函数:实现组件的动画过渡Jun 18, 2023 pm 04:20 PM

Vue3中的transition函数:实现组件的动画过渡Vue3是当前最流行的JavaScript框架之一,它提供了全面的工具来解决前端应用程序的构建问题。其中,transition函数是一个非常强大且有用的功能之一,它能够帮助我们实现组件的动画过渡。在本文中,我们将详细介绍transition函数,并讲解如何在Vue3应用程序中使用它。transition

如何在PHP中实现验证码如何在PHP中实现验证码May 20, 2023 am 11:31 AM

随着互联网的不断发展,越来越多的网站需要使用验证码来保证安全性。验证码是一种借助人类能力而无法被计算机破解的认证技术,广泛应用于网站注册、登录、找回密码等功能中。下面将介绍如何使用PHP实现验证码功能。一、生成验证码图片验证码图片的生成是验证码功能的核心,需要生成一个随机字符,并将其渲染为图像展示给用户。在PHP中,可以使用GD库来生成图片。GD库是一种用于

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment