Skip to content

Instantly share code, notes, and snippets.

@apisklov
Created March 2, 2018 15:17
Show Gist options
  • Save apisklov/ca03a6677b39d00a3002b740a604be52 to your computer and use it in GitHub Desktop.
Save apisklov/ca03a6677b39d00a3002b740a604be52 to your computer and use it in GitHub Desktop.
js resize width
// Выполнение скрипта при изменении ширины
$('document').ready(function() {
// Начальное состояние
my_func();
$(window).resize(function() {
/**
* При изменении ширины окна
*/
my_func();
});
window.onorientationchange = function() {
/**
* При смене ориентации с портретной на пейзажную или обратно
*/
my_func();
};
function my_func() {
/**
* Считываем значение из CSS
*/
var browserMinWidth = parseInt($('head').css('min-width'), 10);
if (browserMinWidth > 1200) {
// какие-то манипуляции
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment