Created
March 2, 2018 15:17
-
-
Save apisklov/ca03a6677b39d00a3002b740a604be52 to your computer and use it in GitHub Desktop.
js resize width
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Выполнение скрипта при изменении ширины | |
$('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