위에서 아래로 내려오는 효과 6가지
1.gsap
[code]
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<title>gsap 사용</title>
<style>
.sample{background-color:yellow;}
</style>
<script src="https://cdn.jsdelivr.net/npm/gsap@3.12.5/dist/gsap.min.js"></script></head>
<body>
<div class="sample">
위에서 내려옵니다.
</div>
<script>
gsap.from(".sample", {y: -100,opacity:0, duration: 1});
</script>
</body>
</html>
[/code]
2.gsap and timeline
[code]
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<title>gsap timeline 사용</title>
<style>
.sample{background-color:yellow;}
</style>
<script src="https://cdn.jsdelivr.net/npm/gsap@3.12.5/dist/gsap.min.js"></script></head>
<body>
<div class="sample">
위에서 내려옵니다.
</div>
<script>
const tl = gsap.timeline();
tl.from(".sample", {y: -100,opacity:0, duration: 1});
</script>
</body>
</html>
[/code]
3.pure css
[code]
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<title>순수 CSS 애니메이션</title>
<style>
.sample {
background-color: yellow;
/* 애니메이션 설정 */
animation: slideDown 1s ease forwards;
}
/* 키프레임 정의 */
@keyframes slideDown {
from {
transform: translateY(-100px);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}
</style>
</head>
<body>
<div class="sample">
위에서 내려옵니다.
</div>
</body>
</html>
[/code]
4.jquery animate
[code]
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<title>top 사용</title>
<style>
.sample{background-color:yellow;}
</style>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
</head>
<body>
<div class="sample">
위에서 내려옵니다.
</div>
<script>
$(".sample")
.css({ position: "relative", top: "-100px", opacity: 0 })
.animate({ top: "0px", opacity: 1 }, 1000);
</script>
</body>
</html>
[/code]
5.jquery.transit
[code]
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<title>jquery.transit 사용 https://github.com/rstacruz/jquery.transit</title>
<style>
.sample{background-color:yellow;}
</style>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.transit/0.9.12/jquery.transit.min.js"></script>
</head>
<body>
<div class="sample">
위에서 내려옵니다.
</div>
<script>
$(".sample")
.css({ position: "relative", translate: ['0','-100px'], opacity: 0 })
.transition({ translate: ['0','0'], opacity: 1 }, 1000);
</script>
</body>
</html>
[/code]
6.Velocity
[code]
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<title>Velocity 사용 https://github.com/julianshapiro/velocity</title>
<style>
.sample{background-color:yellow;}
</style>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/velocity/1.5.2/velocity.min.js"></script>
</head>
<body>
<div class="sample">
위에서 내려옵니다.
</div>
<script>
$(".sample")
.css({ position: "relative", top: "-100px", opacity: 0 })
.velocity({ top: "0px", opacity: 1 }, {duration: 1000});
</script>
</body>
</html>
[/code]
게시판 목록
개발자팁
질문은 QA에서 해주시기 바랍니다.
| 번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|---|
| 5396 | 기타 |
슈퍼스타맨
|
4개월 전 | 361 | |
| 5395 | PHP |
untitled
|
6개월 전 | 828 | |
| 5394 | MySQL |
선택과집중
|
6개월 전 | 605 | |
| 5393 | 웹서버 |
techstar
|
8개월 전 | 871 | |
| 5392 |
|
1년 전 | 1225 | ||
| 5391 | 11개월 전 | 1125 | |||
| 5390 | 10개월 전 | 913 | |||
| 5389 | 10개월 전 | 883 | |||
| 5388 | 9개월 전 | 984 | |||
| 5387 | 8개월 전 | 816 | |||
| 5386 | JavaScript |
nekoieye
|
9개월 전 | 981 | |
| 5385 | 웹서버 | 9개월 전 | 995 | ||
| 5384 | JavaScript |
|
9개월 전 | 828 | |
| 5383 | 기타 | 10개월 전 | 1136 | ||
| 5382 | 기타 |
|
10개월 전 | 584 | |
| 5381 | JavaScript | 10개월 전 | 916 | ||
| 5380 | 기타 |
|
11개월 전 | 703 | |
| 5379 | JavaScript | 11개월 전 | 701 | ||
| 5378 | 11개월 전 | 1204 | |||
| 5377 | 기타 |
|
11개월 전 | 771 | |
| 5376 | jQuery |
|
11개월 전 | 587 | |
| 5375 | jQuery |
techstar
|
11개월 전 | 740 | |
| 5374 | 기타 |
|
11개월 전 | 790 | |
| 5373 | MySQL |
|
1년 전 | 819 | |
| 5372 | 기타 |
|
1년 전 | 1023 | |
| 5371 | JavaScript |
|
1년 전 | 734 | |
| 5370 | JavaScript |
|
1년 전 | 739 | |
| 5369 | PHP |
|
1년 전 | 1249 | |
| 5368 | PHP | 1년 전 | 1420 | ||
| 5367 | 기타 |
nekoieye
|
1년 전 | 1296 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기