html
css代码
*– 왼쪽 –*/
ul#social li {
display: inline;
}
a.rss {
디스플레이: 인라인 블록;
너비: 104px;
높이: 35px;
왼쪽 여백: 5px;
배경: url(images/rss.png) no-repeat;
}
a.facebook, a.twitter, a.digg, a.delicious, a.stumble {
display: inline-block;
너비: 40px;
높이: 35px;
여백 상단: 1px;
}
a.rss:hover, a.facebook:hover, a.twitter:hover, a.digg:hover, a.delicious:hover, a.stumble:hover {
배경 -위치: 1px 1px; /* 간단한 CSS 호버 효과 */
}
a.facebook {
background: url(images/facebook.png) no-repeat;
}
a.twitter {
배경: url(images/twitter.png) no-repeat;
}
a.delicious {
배경: url(images/delicious.png) no-repeat;
}
a.digg {
배경: url(images/digg.png) no-repeat;
}
a.stumble {
background: url(images/stumble.png) no-repeat;
}
.tip {
위치: 절대; /* 중요 */
top: -75px;
너비: 250px;
높이: 78px;
배경: url(images/tip.png) no-repeat;
플로트: 왼쪽;
디스플레이: 없음;
}
/* 아이콘의 사용자 정의 거리 */
#tipfacebook {
left: 75px;
}
#tiptwitter {
왼쪽: 120px;
}
#tipdelicious {
왼쪽: 165px;
}
#tipdigg {
왼쪽: 210px;
}
#tipstumble {
왼쪽: 255px;
}
.tip ul {
padding: 22px 0 0 25px;
}
.tip ul li {
디스플레이: 인라인;
왼쪽 여백: 3px;
}
.tip ul li a {
글꼴 크기: 18px;
색상: #989898;
}
.tip ul li a:hover {
color: #666;
}
.tip ul li small {
font-size: 10px;
}
jquery代码
//목록 요소 위에 마우스를 올리면 툴팁 표시
$(“ul#social li”).hover(function() {
$(this).find(“div”).fadeIn(“fast”).show(); //IE용 'show()' 추가
$(this).mouseleave(function () { //마우스가 요소 밖으로 이동할 때 툴팁 숨기기
$(this).find(“div”).hide()
})
});