I'm writting a small script to detect if the window size is larger then the initial screen size, write some jquery to handle css. The problem I'm having is if I zoom in just one notch on my mouse wheel (ctrl + wheel scroll) it works fine, but as soon as I zoom back one notch it doesn't go back to the original value.
So say my screen is 1920px wide. I zoom in 1 notch on the wheel, now my screen is 1586px, which is completely fine. When I zoom out 1 notch on the wheel my screen SHOULD be 1920px (theoretically) but it's not. It always zooms back out to 1903px and I can't figure out why it won't go back to 1920px.
Here is my code, if more explanation or clarification is needed, please let me know.
var intInitialSize = {width: screen.width, height: screen.height};
var intWindowSize = {width: $(window).width(), height: $(window).height()};
var int125;
$(window).load(function() {
calcMargin();
}).resize(function() {
intWindowSize = {width: $(this).width(), height: $(this).height()};
//int125 = Math.round(Math.abs((intWindowSize.width * 1.25)));
calcMargin();
});
function calcMargin() {
console.log(intInitialSize.width, intWindowSize.width);
if (intInitialSize.width >= intWindowSize.width) {
// css stuff!
}
else {
// other css stuff!
}
}