Created
January 25, 2025 12:50
-
-
Save webantam43/b378dc51a8097238c117770a4dae8bcc to your computer and use it in GitHub Desktop.
Code ảnh xe máy chở hoa mai chạy qua lại như ĐMX đón Tết
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* anh motobike tet */ | |
| .webantam-motobike-tet{ | |
| animation: motorbikeAnimation 24s infinite ease-in-out; | |
| } | |
| @keyframes motorbikeAnimation { | |
| 0% { | |
| left: 0; | |
| transform: scaleX(1) | |
| } | |
| 49% { | |
| left: calc(100% - 80px); | |
| transform: scaleX(1) | |
| } | |
| 50% { | |
| left: calc(100% - 80px); | |
| transform: scaleX(-1) | |
| } | |
| 51% { | |
| left: calc(100% - 80px); | |
| transform: scaleX(-1) | |
| } | |
| 100% { | |
| left: 0; | |
| transform: scaleX(-1) | |
| } | |
| } | |
| /* anh motobike tet end*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment