> 웹 프론트엔드 > CSS 튜토리얼 > 떨어지는 나뭇잎 애니메이션 효과를 얻기 위한 CSS

떨어지는 나뭇잎 애니메이션 효과를 얻기 위한 CSS

王林
풀어 주다: 2021-01-12 10:33:58
앞으로
2782명이 탐색했습니다.

떨어지는 나뭇잎 애니메이션 효과를 얻기 위한 CSS

목적:

낙엽의 회전 및 낙하 효과를 얻기 위해.

(학습 영상 공유: css 영상 튜토리얼)

코드는 다음과 같습니다:

html 코드:

<div class="con">
    <img src="img/yeluobig.png" id="yeluobig"/>
    <img src="img/yeluolit1.png" id="yeluolit1"/>
    <img src="img/yeluolit2.png" id="yeluolit2"/>
</div>
로그인 후 복사

css 코드:

        #yeluobig{position: absolute;top: 29%;left: 30%;
            -webkit-animation:luo 8s infinite linear;
            animation:luo 8s infinite linear;}
        #yeluolit1{position: absolute;top: -2%;left: 40%;
            -webkit-animation:luo 8s infinite 2s linear;
            animation:luo 8s infinite 2s linear;}
        #yeluolit2{position: absolute;top: -2%;left: 50%;
            -webkit-animation:luo 8s infinite 4s linear;
            animation:luo 8s infinite 4s linear;}
        @-webkit-keyframes luo{
            0%{top: -1%;transform:rotate(-60deg);}
            100%{top: 100%;transform:rotate(60deg);}
        }
        @keyframes luo{
            0%{top: -1%;transform:rotate(-60deg);}
            100%{top: 100%;transform:rotate(60deg);}
        }
로그인 후 복사

예제 코드 및 사진:

fallen Leaves.zip

관련 권장 사항: CSS 튜토리얼

위 내용은 떨어지는 나뭇잎 애니메이션 효과를 얻기 위한 CSS의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

관련 라벨:
원천:csdn.net
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿