I'm looking for a way so that my js slider will change it's effect from (normal as it is now) to fade when my browser window is less than 800px. Can anybody help?
<ul class="slider">
<li><img src="images/1" alt="img" width="979" height="470"></li>
<li><img src="images/2" alt="img" width="979" height="470"></li>
<li><img src="images/3" alt="img" width="979" height="470"></li>
</ul>
$('.slider').bxSlider({
navigation : true,
slideSpeed : 300,
paginationSpeed : 400,
singleItem:true,
});
You could roll your own script to listen for resize events and then detect if the window is less than 800 pixels wide, but I would personally check out enquire.js for this particular problem. Using enquire.js your solution can be as easy as.
Hope that helps. Enquire has been an awesome tool for me!