일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- #업종별
- 해피씨지아이
- #해피CGI
- 솔루션
- 홈페이지제작
- #웹솔루션
- php
- #솔루션
- 홈페이지
- #image
- jquery
- 해피CGI
- #홈페이지제작
- 웹솔루션
- #이미지
- #홈페이지
- 사이트제작
- #쇼핑몰
- #CSS
- CGIMALL
- #jQuery
- #뉴스
- 게시판
- happycgi
- CSS
- 쇼핑몰
- #동영상
- #happycgi
- javascript
- #cgimall
- Today
- Total
웹솔루션개발 25년 노하우! 해피CGI의 모든것
[해피CGI][cgimall] Snowfall, piles of snow, fog (animated) 본문
웹프로그램밍 자료실/기타 자료
[해피CGI][cgimall] Snowfall, piles of snow, fog (animated)
해피CGI윤실장 2025. 1. 20. 09:36 다음은 HTML과 CSS, JavaScript를 활용하여 눈이 내리는 애니메이션을 구현하는 코드에 대한 설명입니다.
이 애니메이션은 눈송이가 하늘에서 떨어지는 모습을 표현하며, 눈송이가 바닥에 닿으면 쌓이는 독특한 효과를 제공합니다.
겨울의 분위기를 연출하는 데 적합하며, 웹사이트의 배경 또는 이벤트 페이지 디자인에 활용할 수 있습니다.
자세한 내용은 데모를 확인해 주시기 바랍니다.
HTML
<div class="clouds-bg"></div>
<canvas id="snow-canvas-1"></canvas>
<canvas id="snow-canvas-2"></canvas>
<canvas id="snow-canvas-3"></canvas>
<canvas id="snow-canvas-4"></canvas>
<canvas id="snow-canvas-5"></canvas>
<canvas id="snow-canvas-6"></canvas>
|
CSS
body {
margin: 0;
padding: 0;
background-image: linear-gradient(to bottom, #00111a, #00334d, #005580);
background: url("https://hagall-media.de/cp/forest3.jpg") repeat-x;
background-position: center bottom;
background-size: cover;
overflow: hidden;
height: 100vh;
width: 100vw;
position: relative;
}
canvas {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
#snow-canvas-1 {
z-index: 6;
}
#snow-canvas-2 {
z-index: 5;
}
#snow-canvas-3 {
z-index: 4;
}
#snow-canvas-4 {
z-index: 3;
}
#snow-canvas-5 {
z-index: 2;
}
#snow-canvas-6 {
z-index: 1;
}
.clouds-bg {
width: 100vw;
height: 100vh;
z-index: 1;
background: url("https://hagall-media.de/cp/clouds.png") repeat-x;
background-size: cover;
animation: moveClouds 200s linear infinite;
backdrop-filter: saturate(200%);
mix-blend-mode: plus-lighter;
}
@keyframes moveClouds {
0% {
background-position: 0 0;
}
100% {
background-position: -2000px 0;
}
}
|
'웹프로그램밍 자료실 > 기타 자료' 카테고리의 다른 글
[해피CGI][cgimall] 움직이는 아이콘과 메뉴가 나오는 서치 효과 UI Experiment (0) | 2025.01.22 |
---|---|
[해피CGI][cgimall] 웹에서 비디오 파일 크기 줄이기 (0) | 2025.01.17 |
[해피CGI][cgimall] 다양한 AI 중 완벽한 파트너를 찾아주는 Poe (0) | 2025.01.16 |
[해피CGI][cgimall] AI 기반 글쓰기 서포터 Quillbot (0) | 2025.01.15 |
[해피CGI][cgimall] 공공 인공지능 오픈 API (0) | 2025.01.02 |
Comments