WordPress : Supprimer l’animation du thème WP (css)
Je travaille sur un modèle WordPress avec une animation sur la page d’accueil. L’animation charge le contenu de la page d’accueil (bannière et newsletter) lorsque vous faites défiler. Je ne veux pas supprimer l’animation, mais je n’arrive pas à savoir dans quel fichier CSS le script d’animation est caché. Quelqu’un peut-il m’aider s’il vous plaît?
Merci :))
http://funwithfelix.com/
Solution n°1 trouvée
Trouvé à l’intérieur de helper.js
// Initializing waypoints to show/hide flowign panel above header
jQuery(document).ready(function($){
$(window).load(function(){
$('.site-header').waypoint(function(direction) {
if (direction == 'down') {
$('.panel-hidden').fadeIn();
} else {
$('.panel-hidden').fadeOut();
}
}, {
offset: function() {
return -$(this).height();
}
});
});
});
0 commentaire