목록CSS (1)
썩구노트
이미지 없이 구현하는 간단한 별점 기능 제이쿼리
1.html ★ ★ ★ ★ ★ 2.css .star_rating {font-size:0; letter-spacing:-4px;}.star_rating a { font-size:22px; letter-spacing:0; display:inline-block; margin-left:5px; color:#ccc; text-decoration:none;}.star_rating a:first-child {margin-left:0;}.star_rating a.on {color:#777;} 3.Jquery$( ".star_rating a" ).click(function() { $(this).parent().children("a").removeClass("on"); $(this).addClass("on").prevAl..
CSS
2016. 7. 28. 18:43