CSS 아이콘 hover 효과 모음
다운로드
Icon Hover Effect 에서는 css를 이용한 9가지의 hover 효과를 확인할 수 있습니다.
해당 효과는 아이콘 이미지가 아닌 아이콘이 출력되는 폰트를 사용하여 색상을 쉽게 변경하고 스타일을 주고 있습니다. 효과를 주는 기본 소스는 아래와 같습니다.
html
<div class="hi-icon-wrap hi-icon-effect-1 hi-icon-effect-1a">
<a href="#" class="hi-icon hi-icon-mobile">Mobile</a>
<a href="#" class="hi-icon hi-icon-screen">Desktop</a>
<a href="#" class="hi-icon hi-icon-earth">Partners</a>
<a href="#" class="hi-icon hi-icon-support">Support</a>
<a href="#" class="hi-icon hi-icon-locked">Security</a>
</div>
CSS
.hi-icon-effect-6 .hi-icon {
box-shadow: 0 0 0 4px rgba(255,255,255,1);
transition: background 0.2s, color 0.2s;
}
.no-touch .hi-icon-effect-6 .hi-icon:hover {
background: rgba(255,255,255,1);
color: #64bb5d;
}
.no-touch .hi-icon-effect-6 .hi-icon:hover:before {
animation: spinAround 2s linear infinite;
}
@keyframes spinAround {
from {
transform: rotate(0deg)
}
to {
transform: rotate(360deg);
}
}
Quotation : 메리 루 (웹디자이너 겸 개발자)
[디자인공부] - 미리캔버스로 멋진 썸네일 이미지 만들기
[세상살이] - 인터넷이나 화면 녹화가 필요 하다면 Screencastify
[코딩공부] - CSS fixedNavigation2 예제 다운로드
[세상살이] - 코로나 2단계 정리 (카페, 학원, 음식점, 피시방 등)
'코딩공부' 카테고리의 다른 글
CSS 버튼 예제 (0) | 2020.11.18 |
---|---|
jQuery를 이용한 상자 내용 이동 (0) | 2020.11.16 |
전체화면 CSS 기반 슬라이더 만드는 방법 (0) | 2020.11.14 |
CSS jQuery를 이용한 펼침 메뉴 예제 다운로드 (0) | 2020.11.03 |
CSS와 jQuery로 풍경 애니메이션 만들기 예제 다운로드 (0) | 2020.11.03 |
CSS fixedNavigation2 예제 다운로드 (0) | 2020.11.03 |
CSS overlay with slide out box 예제 다운로드 (0) | 2020.11.02 |
CSS fixedNavigation1 예제 다운로드 (0) | 2020.11.02 |
댓글