Opera 7
@ Media all and (min-width: 0px) { selector { property:value; } }
Opera <= 9
@media all and (min-width: 0px){ head~body selector { property:value; } }
html:first-child selector { property:value; }
Opera <= 9.5
@media all and (min-width: 0px) { html:first-child selector { property:value; } }
Opera >= 9.5
x:-o-prefocus, selector { property:value; }
Opera < 10 & Chrome
selector { -bracket-:hack(;property:value;); }
Opera >= 10
@media not all and (-webkit-min-device-pixel-ratio:0) { selector { property:value; } }
Opera
@media all and (min-width: 0px){ selector { property:value; } }
$(function() {
$('.carousel').slick({
slidesToShow: 1,
slidesToScroll: 1,
mobileFirst: true, --------------------------------------------// mobileFirst
arrows: false,
dots: true,
responsive: [
{
breakpoint: 769,
settings: 'unslick'
}
]
});
$(window).on('resize', function() {
$('.carousel').slick('resize');
});
});
$('#reg-btn').touchstart(function(e) { ----- touchstart
$('.form-signup').addClass('show');
e.preventDefault;
});$('#reg-btn').click(function(e) { ----- click
$('.form-signup').addClass('show');
e.preventDefault;
});