I'm trying to write a script that will fix a DIV if the screen is a certain width. This is what I have so far, but the logic is not correct and I'm not sure how to write it.
var controller = new ScrollMagic();
var w = $(window).width();
if(w >= 500) {
var sidebar = new ScrollScene()
.triggerHook("0")
.setPin("#sidebar-pin")
.addTo(controller);
}
$(window).on('resize',function(){
if(w < 500) {
controller.removePin("#sidebar-pin",true);
} else {
var sidebar = new ScrollScene()
.triggerHook("0")
.setPin("#sidebar-pin")
.addTo(controller);
}
});
http://jsfiddle.net/gtowle/jxoewzoo/
The logic I'm aiming for is:
- On page load, if the the window width is greater than 500, do A. If not, do nothing.
- On window resize, if the window width becomes less than 500, do B, and if it becomes greater than 640, do A.
I think my problem is that I'm not sure how to trigger #2 once the window is resized.
Instead use css mediaqueries for something like this.
The js code for onscroll: