.blackout {
    background-color:#000;
    opacity:.7;
    filter:alpha(opacity=70);
    height:100%;
    width:100%;
    position:fixed;
    top:0;
    left:0;
    z-index:100;
    display:none;
    cursor:pointer;
}



http://hangaebal.blogspot.kr/2014/10/css-popup-window-with-dimmed-background.html


<!-- Favicons -->
<link rel="apple-touch-icon-precomposed" href="/favicon.ico">
<link rel="icon" href="/favicon.ico">





http://hangaebal.blogspot.kr/2014/08/css-favicon-apple-touch-icon.html

$(document).ready(function() {
    $('.hover').bind('touchstart touchend', function(e) {
        e.preventDefault();
        $(this).toggleClass('hover_effect');
    });
});


http://hangaebal.blogspot.kr/2014/07/css-hover-css.html

+ Recent posts