Hey,
i have the problem that my fade animation is not working properly with Safari.
In FireFox/Chrome and IE it works very well
- $next
- .css('display', 'list-item')
- .animate({
- opacity: 1
- }, opts.speed, 'linear', function () {
- $next
- .addClass('show')
- $content.show();
- $innerWrapper.removeClass('gallery-disabled');
- });
- $old.animate({
- opacity: 0
- }, opts.speed, 'linear', function () {
- $old
- .removeClass('show')
- .css('display', 'none')
- .remove( '.gallery-img-content' );
- });
why does it not work with safari?
sorry for my bad english and thanks for any help!