How to resize (scale) slide images to a different size from jquery or css or any other ways?
it always load the main images full width and height and controlling with following ways does not work.
you can download sample full working skitter sample and test it easily yourself
no help is found inside http://www.skitter-slider.net/documentation
it is possible to resize the images slider container by following sample code but if the images if larger than 530 px it will only shows some part of it.
$(document).ready(function() {
$('.box_skitter_large').css({width: 530, height: 110}).skitter({
theme: 'minimalist',numbers_align: 'center'
});
});
</script>
also setting images width and height in img tags does not help .
the following is the more specific scenario in the original question which may help.
I wrote the below code to dynamically adjust images size on window resize using skitter and jquery . but its not working pls help
<script>
$('.box_skitter_normal').addClass("z1").skitter({label: false, numbers: false});
$('.box_skitter_normal2').addClass("z2").skitter({label: false, numbers: false});
$(window).resize(function() {
$('.box_skitter_normal').addClass("z1").skitter({label: false, numbers: false});
$('.box_skitter_normal2').addClass("z2").skitter({label: false, numbers: false});
});
</script>