Customizabled scrollbars (jquery.nicescroll)
Nicescroll is a jquery plugin, for nice customizabled scrollbars with a very similar ios/mobile style.It supports DIVs, IFrames and document page (body) scrollbars. Compatible with Firefox 4+, Chrome 5+, Safari 4+ (win/mac), Opera 10+, IE 6+ (all A-grade browsers). Compatible with iOS devices as iPad, Android, Blackberry, Windows Phone, and many many mobile and touch devices. https://github.com/..
더보기
background에만 opacity적용하기
나만 그런지 모르겠지만, 특정 영역에 투명도를 줄때 요소 css에 opacity속성으로 주는 편이다. 그러다보니 그 요소 안에 들어있는 모든 요소들에 투명도가 적용되어, 또 다시 투명도가 필요없는 요소에 opacity나 z-index를 적용시키는 불필요한 작업을 하게된다. 그러다가 background속성에서 투명도를 조절할 수 없을까하는 생각을 갖게되었고, 바로 구글링을 하였다. 그런데...역시...가능했다. /* header {background-color:rgba(R, G, B, Opacity);} */ header {background-color:rgba(170, 204, 203, 0.9);} RGB값으로 넣어주고, 뒤에 opacity 값을 넣어주면 해결, 물론 이것도 IE 9이상 버전에서만 적용된..
더보기