animsition
animsition copied to clipboard
Page doesn't fade out
How come our page doesn't fadeout? Is it because of WordPress?
http://wp.mementor.no/
I have the same problem but only on safari, in Chrome or Firefox it works. Does it have anything to do with the fact that some JQuery animation functions are depreciated?
Our site doesn't fade out in any of the browsers. It only fades in.
This happens after I update to the latest jQuery version 1.12.2!! Any solution !!
for me a restart did the trick.
@Runehm Can you explain how, please !
@virik
This is what you currently have in your custom.js file:
$('.animsition').animsition({ inClass: 'fade-in', outClass: 'fade-out', inDuration: 1500, outDuration: 1500 });
I believe this is what you need:
$('.animsition').animsition({ inClass: 'fade-in', outClass: 'fade-out', linkElement: 'a:not([target="_blank"]):not([href^=#])', inDuration: 1500, outDuration: 1500 });
Let me know if this works for you. Anyone else that's having this issues you need to make sure that you fill out the linkElement property. Hopes this helps.
Thanks for that @jgoslinga
You probably missed '.' in linkElement property: linkElement: '.animsition-link' instead of linkElement: 'animsition-link'
Confirmed: linkElement: 'a:not([target="_blank"]):not([href^=#])',
Changing Jquery made no difference. Glad this was top Google.