강의

멘토링

커뮤니티

Inflearn Community Q&A

taylorkimjw19440's profile image
taylorkimjw19440

asked

Responsive Website Portfolio (App Official Landing Website)

Applying Scroll Reveal Animation

Scroll Reveal Animation 적용이 안되요

Written on

·

352

1

아래 처럼 css 적용하고 html도 강의데로 넣어줬는데...

왜 애니메이션이 적용되지 않을까요

.ltr {
    animation: ltr o.5s linear both;
}
.rtl {
    animation: rtl o.5s linear both;
}
.utd {
    animation: utd o.5s linear both;
}

@keyframes ltr {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes rtl {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes utd {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
HTML/CSSjquery반응형-웹

Answer 1

0

taylorkimjw1님의 프로필 이미지
taylorkimjw1
Questioner

답변 부탁드립니다!

codingworks님의 프로필 이미지
codingworks
Instructor

지난번에도 얘기했지만 HTML 코드도 올려주세요~ 전체 코드를 올려 주셔야 확인할 수 있습니다.

taylorkimjw19440's profile image
taylorkimjw19440

asked

Ask a question