How to use CSS to create a marquee effect
Steps on how to use CSS to implement the marquee effect
The marquee effect is a common front-end special effect that displays continuously scrolling text or pictures on a web page. Adds some movement and energy to the page. This article will introduce the specific steps on how to use CSS to achieve the marquee effect, and provide corresponding code examples for reference.
Step 1: Create HTML structure
First, we need to create a container in HTML to achieve the marquee effect. You can use a div element as a container, as shown below:
<div class="marquee-container"> <ul class="marquee-content"> <li>跑马灯内容1</li> <li>跑马灯内容2</li> <li>跑马灯内容3</li> <!-- 添加更多的跑马灯内容 --> </ul> </div>
In the above code, we created a div element with class "marquee-container" as the container of the marquee, and created it inside this container A ul element with class "marquee-content" is used to accommodate the content of the marquee.
Step 2: Set CSS styles
Next, we need to set the corresponding CSS styles for the container and content. The specific steps are as follows:
- Set the width and height of the container, and set it to relative positioning (position: relative) to position the marquee content within the container.
.marquee-container { width: 100%; height: 100px; position: relative; }
- Set the content style and scrolling effect. Set the content's ul element to absolute positioning (position: absolute) and set its width to a larger value to ensure that the content can scroll horizontally.
.marquee-content { list-style: none; margin: 0; padding: 0; position: absolute; white-space: nowrap; /* 防止内容换行 */ animation: marquee 10s linear infinite; /* 设置滚动效果 */ } @keyframes marquee { 0% { transform: translateX(0%); } /* 初始状态,内容从左侧显示 */ 100% { transform: translateX(-100%); } /* 结束状态,内容向左滚动完全消失 */ }
In the above code, we set up a @keyframes animation named "marquee" to achieve horizontal scrolling of the content through the translateX function of the transform attribute. Set the initial state of 0% to a horizontal offset of 0%, the end state of 100% to a horizontal offset of -100% (i.e. scroll left until the content disappears completely), and set the animation to last 10 seconds, linear motion, and infinite loop.
Step 3: Adjust the display effect of the container and content
Finally, we can adjust the display effect of the container and content according to actual needs. For example, we can set the background color, borders, margins, etc. of the container to better match the overall style of the page. At the same time, we can also set the font, color, font size, etc. of the content, and add some CSS transition effects to increase the smoothness of the marquee.
.marquee-container { background-color: #f2f2f2; border: 1px solid #ccc; margin: 20px; } .marquee-content li { font-family: Arial, sans-serif; color: #333; font-size: 16px; padding: 10px; transition: color 0.3s ease-in-out; } .marquee-content li:hover { color: #ff0000; /* 鼠标悬停时改变文字颜色 */ }
In the above code, we set the background color of the container to #f2f2f2, the border to 1px solid #ccc, and set the margin to 20px. At the same time, we set the font of the content to Arial, the color to #333, the font size to 16px, and set a 0.3-second color transition effect for the content, so that the text color gradually turns red when the mouse is hovered.
In summary, through the above steps, we can use CSS to achieve a simple marquee effect. Of course, according to actual needs, we can further expand and optimize this effect. Hope the above content is helpful to you!
The above is the detailed content of How to use CSS to create a marquee effect. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



Using Bootstrap in Vue.js is divided into five steps: Install Bootstrap. Import Bootstrap in main.js. Use the Bootstrap component directly in the template. Optional: Custom style. Optional: Use plug-ins.

HTML defines the web structure, CSS is responsible for style and layout, and JavaScript gives dynamic interaction. The three perform their duties in web development and jointly build a colorful website.

There are two ways to create a Bootstrap split line: using the tag, which creates a horizontal split line. Use the CSS border property to create custom style split lines.

WebdevelopmentreliesonHTML,CSS,andJavaScript:1)HTMLstructurescontent,2)CSSstylesit,and3)JavaScriptaddsinteractivity,formingthebasisofmodernwebexperiences.

To adjust the size of elements in Bootstrap, you can use the dimension class, which includes: adjusting width: .col-, .w-, .mw-adjust height: .h-, .min-h-, .max-h-

There are several ways to insert images in Bootstrap: insert images directly, using the HTML img tag. With the Bootstrap image component, you can provide responsive images and more styles. Set the image size, use the img-fluid class to make the image adaptable. Set the border, using the img-bordered class. Set the rounded corners and use the img-rounded class. Set the shadow, use the shadow class. Resize and position the image, using CSS style. Using the background image, use the background-image CSS property.

How to use the Bootstrap button? Introduce Bootstrap CSS to create button elements and add Bootstrap button class to add button text

To set up the Bootstrap framework, you need to follow these steps: 1. Reference the Bootstrap file via CDN; 2. Download and host the file on your own server; 3. Include the Bootstrap file in HTML; 4. Compile Sass/Less as needed; 5. Import a custom file (optional). Once setup is complete, you can use Bootstrap's grid systems, components, and styles to create responsive websites and applications.
