suite animate inView souligne

This commit is contained in:
2021-04-19 20:43:17 +02:00
parent 1d89d1c53a
commit 5889ce4076
3 changed files with 12 additions and 5 deletions
@@ -904,10 +904,10 @@ ul.pagination {
margin-left: 0%; margin-left: 0%;
width: 100%; } } width: 100%; } }
.after-h1 .souligne.toright { .after-h1 .in-view-right {
animation: animate 1.2s 1 normal ease-in-out forwards; } animation: animate 1.2s 1 normal ease-in-out forwards; }
.after-h1 .souligne.toleft { .after-h1 .in-view {
animation: glissement 1.2s 1 normal ease-in-out forwards; } animation: glissement 1.2s 1 normal ease-in-out forwards; }
.programmes { .programmes {
+8 -1
View File
@@ -127,11 +127,18 @@ jQuery(document).ready(function($){
return ((elemBottom <= docViewBottom) && (elemTop >= docViewTop)); return ((elemBottom <= docViewBottom) && (elemTop >= docViewTop));
} }
$(window).scroll(function () { $(window).scroll(function () {
$('.souligne').each(function () { $('.souligne.toleft').each(function () {
if (isScrolledIntoView(this) === true) { if (isScrolledIntoView(this) === true) {
$(this).addClass('in-view') $(this).addClass('in-view')
} else { } else {
$(this).removeClass('in-view') $(this).removeClass('in-view')
} }
}); });
$('.souligne.toright').each(function () {
if (isScrolledIntoView(this) === true) {
$(this).addClass('in-view-right')
} else {
$(this).removeClass('in-view-right')
}
});
}); });
@@ -162,12 +162,12 @@
} }
} }
.after-h1 { .after-h1 {
.souligne.toright { .in-view-right {
// opacity: 0; // opacity: 0;
// transition: opacity 1s ease-in-out; // transition: opacity 1s ease-in-out;
animation: animate 1.2s 1 normal ease-in-out forwards; animation: animate 1.2s 1 normal ease-in-out forwards;
} }
.souligne.toleft { .in-view {
animation: glissement 1.2s 1 normal ease-in-out forwards; animation: glissement 1.2s 1 normal ease-in-out forwards;
} }
} }