responsive resize

w = 0; $(window).resize(function() { viewportWidth = $(this).width(); if ( viewportWidth >= 1200 && w < 1200){ $('body').css('background', 'red'); w = viewportWidth; $('.status').text('Red'); console.log(w); }else if (viewportWidth < 1200 && w >= 1200) { $('body').css('background', 'green'); $('.status').text('Green'); w = viewportWidth; console.log(w); }else if (viewportWidth < 960 && w >= 960) { $('body').css('background', 'blue'); $('.status').text('Blue'); w = viewportWidth; console.log(w); }; }).resize();

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.