이 글에서는 주로 CSS3 효과를 소개합니다. "W" 모양의 달리기 궤적은 CSS를 통해 구현될 수 있으며 도움이 필요한 친구들이 참고할 수 있습니다.
문서를 정리하고 CSS3 효과를 검색하세요. 'W' 모양의 달리기 궤적 예제 코드를 분류하고 공유하기 위해 조금 간소화합니다.
<!DOCTYPE html> <html> <head lang="en"> <meta charset="UTF-8"> <title></title> <style type="text/css"> *{ margin: 0; padding:0; } #p{ width:900px; height:400px; border:2px solid black; margin: 100px auto; } #span{ float:left; display: block; font-size: 100px; width: 100px; height: 100px; line-height: 80px; text-align: center; border-radius: 50%; background: radial-gradient(blue,green); animation: move 4s ease 0s infinite alternate; } @keyframes move { 0%{ transform: translate(0px,0px); } 25%{ transform: translate(200px,300px); } 50%{ transform: translate(400px,0px); } 75%{ transform: translate(600px,300px); } 100%{ transform: translate(800px,0px); } } </style> </head> <body> <p id="p"> <span id="span">w</span> </p> </body> </html>
위 내용은 모두의 학습에 도움이 되기를 바랍니다. 더 많은 관련 내용은 PHP 중국어 홈페이지를 주목해주세요!
관련 권장 사항:
위 내용은 CSS3에서 사용자 정의 'W' 모양의 달리기 궤적을 구현하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!