if($(window).width() < 768) {
} else {
}
//창을 줄일 때
$(window).resize(function() {
if($(window).width() < 768) {
} else {
}
});
// 반응형 스크립트
$(window).resize(function () {
var width = $(window).width();
if (width>1024) {
} else if (width>=768 && width<=1024) {
} else if (width<768) {
}
});
$(window).trigger("resize"); //강제로 호출하는 함수
function Debounce(){
document.location.reload();
}
let Timer;
window.onresize = function(){
if(Timer){
clearTimeout(Timer)
}
Timer = setTimeout(() => {
Debounce()
}, 500)
};
728x90