This article mainly introduces the sample code of flex layout to achieve seamless scrolling, which is shared with you as follows: Case demonstration Flex layout The so-called flex layout is an elastic box layout. This layout is more commonly used on mobile devices, but with the update of browser versions, flex layout is becoming more and more commonly used because of its own advantages. Ideas:
Animation effects
CSS part code * { margin: 0; padding: 0; } a { text-decoration: none; } .box-big { position: absolute; display: flex; left: 50%; top: 50%; border: 1px solid #9FD6FF; transform: translate(-50%, -50%); width: 707px; height: 170px; /* background-color: pink; */ flex-wrap: wrap; overflow: hidden; } .box-top { width: 707px; height: 30px; border-bottom: 1px solid #9FD6FF; background-color: #FEFEFE; } .div-bottom { width: 707px; height: 136px; /* background-color: darkgoldenrod; */ overflow: hidden; } .st-icon-android { display: inline-block; width: 15px; height: 15px; background-image: url(../img/hd.gif); margin: 8px; } h5 { position: absolute; top: 6PX; left: 30px; color: #307DD1; } ul { position: absolute; left: 90px; width: 3000px; height: 100%; animation: run 20s linear infinite; } li { list-style: none; float: left; width: 140px; height: 100%; margin: 0 5px 0 5px; /* background-color: gold; */ flex-wrap: wrap; } .photo { margin-top: 5px; width: 140px; height: 105px; text-align: center; /* background-color: springgreen; */ } p { text-align: center; } img { cursor: pointer; } @keyframes run { 0% { left: 0; } 100% { left: -745px; } } This concludes this article on sample code for implementing seamless scrolling with flex layout. For more information on flex seamless scrolling, please search previous articles on 123WORDPRESS.COM or continue browsing the following related articles. I hope you will support 123WORDPRESS.COM in the future! |
<<: docker-maven-plugin packages the image and uploads it to a private warehouse
>>: JS ES new feature of variable decoupling assignment
Table of contents 1. Introduction 2. Create a Vit...
Table of contents 1. Introduction 2. Main text 2....
Table of contents Create a simple springboot proj...
Swap space is a common aspect of computing today,...
In the previous article https://www.jb51.net/arti...
I hope to align the title on the left and the dat...
Introduction EXISTS is used to check whether a su...
Table of contents Linux-Use MyCat to implement My...
This article uses examples to describe common bas...
What we need to pay attention to is that the char...
This article example shares the specific code for...
Original link https://github.com/XboxYan/no… A bu...
Table of contents 1. Introduction 2. Output Infor...
useState useState adds some internal state to a c...
【Foreword】 Recently I want to stress test ITOO...