I have used in the correct way easing like:
<script type="text/javascript" src="jquery.fancybox-pack.js"></script>
<script type="text/javascript" src="jquery.fancybox-buttons.js"></script>
<script type="text/javascript" src="jquery.fancybox-thumbs.js"></script>
<script type="text/javascript" src="jquery.fancybox-media.js"></script>
<script type="text/javascript" src="easing/js/jquery.easing.1.3.js"></script>
<script type="text/javascript" src="jquery.mousewheel-pack.js"></script>
and js:
jQuery(".fancybox")
.attr('rel', 'mygalleries')
.fancybox({
'transitionIn':'elastic',
'transitionOut':'elastic',
'speedIn':500,
'speedOut':100,
nextMethod : 'resizeIn',
nextSpeed : 250,
prevMethod : 'resizeOut',
prevSpeed : 250
});
How is possible that smooth effect is not working as images go from up till bottom without easing effect? Is there some wrong code?