일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- #이미지
- #happycgi
- 웹솔루션
- #동영상
- #image
- 해피CGI
- #CSS
- #솔루션
- #업종별
- php
- 솔루션
- #홈페이지
- 홈페이지제작
- 사이트제작
- CGIMALL
- #cgimall
- javascript
- jquery
- #홈페이지제작
- happycgi
- 쇼핑몰
- 홈페이지
- #해피CGI
- #쇼핑몰
- CSS
- #뉴스
- #jQuery
- 게시판
- 해피씨지아이
- #웹솔루션
- Today
- Total
웹솔루션개발 25년 노하우! 해피CGI의 모든것
[해피CGI][cgimall] Animated text fill 본문
HTML과 SCSS로 제작된 텍스트 애니메이션 입니다.
텍스트 색상이 움직이는 디자인입니다.
자세한 내용은 데모에서 확인 하실 수 있습니다.
HTML
<p>
Spice up your type with CSS
<span>
Animated text fill
</span>
— no JavaScript required —
</p>
|
CSS
body { font: 400 1em/1.5 "Neuton"; background: #090d00; color: rgba(255,255,255,.25); text-align: center; margin: 0 }
p {
text-transform: uppercase;
letter-spacing: .5em;
display: inline-block;
border: 4px double rgba(255,255,255,.25);
border-width: 4px 0;
padding: 1.5em 0em;
position: absolute;
top: 18%;
left: 50%;
width: 40em;
margin: 0 0 0 -20em;
span {
font: 700 4em/1 "Oswald", sans-serif;
letter-spacing: 0;
padding: .25em 0 .325em;
display: block;
margin: 0 auto;
text-shadow: 0 0 80px rgba(255,255,255,.5);
/* Clip Background Image */
background: url(https://i.ibb.co/RDTnNrT/animated-text-fill.png) repeat-y;
-webkit-background-clip: text;
background-clip: text;
/* Animate Background Image */
-webkit-text-fill-color: transparent;
-webkit-animation: aitf 80s linear infinite;
/* Activate hardware acceleration for smoother animations */
-webkit-transform: translate3d(0,0,0);
-webkit-backface-visibility: hidden;
}
}
/* Animate Background Image */
@-webkit-keyframes aitf {
0% { background-position: 0% 50%; }
100% { background-position: 100% 50%; }
}
|
'웹프로그램밍 자료실 > 기타 자료' 카테고리의 다른 글
[해피CGI][cgimall] 맞춤형 가상동반자를 생성하고 상호 작용할 수 있는 AI 기반 플랫폼 Candy.ai (0) | 2025.02.14 |
---|---|
[해피CGI][cgimall] 텍스트 요약, 디자인보조 등 다양한 분야에서 활용되는 AI 라이너(AI Liner) (0) | 2025.02.13 |
[해피CGI][cgimall] 3D Card Hover (0) | 2025.02.11 |
[해피CGI][cgimall] 하나금융그룹 - 환율정보조회 Open API (0) | 2025.02.10 |
[해피CGI][cgimall] 한국은행 경제통계 OPEN API (0) | 2025.02.07 |
Comments