Hi-
This seems possible if % is set for the slideshow images instead of
px. The only issue is that, on initialize, the dimensions are
calculated and used for the animations (makes sense). If the browser
is resized, however, these dimensions are no longer valid.
Any recommendations on recalculating all of the values as efficiently
as possible on browser resize?
Resizing event exists. Can we make use of it?
var timer;
window.addEvent('resize', function(){
$clear(timer);
timer = (function(){
console.log('resizing');
}).delay(50);
});
Thanks
Greg