CSS와 SVG를 fisheye 애니메이션
Publisher/CSS / 2008. 4. 2. 10:32
제목은 그럴듯 하지만 CSS의 hover속성을 이용한 mouseover, click 이벤트에 따른 이미지로드이다.
원본출처 : http://www.sitepen.com/blog/2008/03/28/svg-css-animations-fisheye-fun/
데모 : http://sitepen.com/labs/code/cssDock/
원본출처 : http://www.sitepen.com/blog/2008/03/28/svg-css-animations-fisheye-fun/
데모 : http://sitepen.com/labs/code/cssDock/
.dock img {
width:50px;
padding:10px;
float:left;
position:relative;
display:block;
-webkit-transition:width 0.5s ease-out, top 0.2s ease-out;
}
.dock img:hover {
width:100px;
}
.dock img:active {
top:-40px;
}
.dock img:hover + img {
width:70px;
}
width:50px;
padding:10px;
float:left;
position:relative;
display:block;
-webkit-transition:width 0.5s ease-out, top 0.2s ease-out;
}
.dock img:hover {
width:100px;
}
.dock img:active {
top:-40px;
}
.dock img:hover + img {
width:70px;
}
'Publisher > CSS' 카테고리의 다른 글
웹폰트로 이쁜 웹페이지를 꾸며보자 (4) | 2008.07.23 |
---|---|
CSS 2.0 표준 Reference (0) | 2008.04.15 |
CSS를 이용한 XHTML1 strict 모드의 height100% (3) | 2008.04.08 |
IE6,IE7 ,FireFox 에 대해 CSS 맞추기 (0) | 2008.03.11 |
IE에서 empty-cells 적용하기 (0) | 2008.02.15 |