mastered vuejs transitions

This commit is contained in:
2019-09-24 16:49:14 +02:00
parent 13479074b4
commit 665a5154d7
4 changed files with 104 additions and 61 deletions
+18 -24
View File
@@ -4,6 +4,7 @@
@import './base/grid-flex'; @import './base/grid-flex';
@import './base/layout'; @import './base/layout';
@import './base/fonts'; @import './base/fonts';
@import './base/transitions';
body{ body{
@@ -55,15 +56,19 @@ section[role="main-content"]{
} }
footer[role="tools"]{ footer[role="tools"]{
$list-item-h: 5.3em;
#history{ #history{
z-index: 8;
background-color: $or; background-color: $or;
padding:1.2em $side-padding; padding:1.2em $side-padding;
} }
#results{ #results{
z-index: 9;
background-color: $gris; background-color: $gris;
max-height: 50vh;
padding:1.2em $side-padding; padding:1.2em $side-padding;
section.col-1{ max-height: $list-item-h * 3;
@include accordeon-transition($list-item-h * 3);
>header{
.results-count{ .results-count{
font-size: 0.756em; font-size: 0.756em;
} }
@@ -83,12 +88,16 @@ footer[role="tools"]{
} }
} }
li.result{ li.result{
flex-basis: percentage(2/$default_sum);
height: 5.3em;
overflow: hidden;
margin-bottom: 1em;
padding-right: 0.7em;
box-sizing: border-box; box-sizing: border-box;
flex-basis: percentage(2/$default_sum);
height: $list-item-h;
overflow: hidden;
padding-bottom: 1em;
padding-right: 0.7em;
article{
max-height: 100%;
overflow: hidden;
}
} }
article.result.item{ article.result.item{
header{ header{
@@ -111,6 +120,7 @@ footer[role="tools"]{
} }
} }
#footer-bottom{ #footer-bottom{
z-index: 10;
padding:0 $side-padding; padding:0 $side-padding;
background-color: $bleuroi; background-color: $bleuroi;
&>*{ &>*{
@@ -143,6 +153,7 @@ footer[role="tools"]{
font-weight: 400; font-weight: 400;
text-transform: uppercase; text-transform: uppercase;
cursor: pointer; cursor: pointer;
@include fade-transition;
} }
} }
} }
@@ -219,20 +230,3 @@ span.mdi-loading{
animation-iteration-count: infinite; animation-iteration-count: infinite;
animation-timing-function: linear; animation-timing-function: linear;
} }
// _ _ _ _
// | |_ _ _ __ _ _ _ __(_) |_(_)___ _ _ ___
// | _| '_/ _` | ' \(_-< | _| / _ \ ' \(_-<
// \__|_| \__,_|_||_/__/_|\__|_\___/_||_/__/
.fade-roll-enter-active{
transition: all .3s ease-in-out;
}
.fade-roll-leave-active{
transition: all .8s ease;
}
.fade-roll-enter, .fade-roll-leave-to{
opacity:0;
// height:1px;
}
+47
View File
@@ -0,0 +1,47 @@
// _ _ _ _
// | |_ _ _ __ _ _ _ __(_) |_(_)___ _ _ ___
// | _| '_/ _` | ' \(_-< | _| / _ \ ' \(_-<
// \__|_| \__,_|_||_/__/_|\__|_\___/_||_/__/
@mixin accordeon-transition($h){
&.accordeon-enter,
&.accordeon-leave-to{
// opacity: 0;
height:0.01vh;
padding-top: 0;
padding-bottom: 0;
// transform: translateY(100%);
// transform: translate3d(0, 100%, 0);
}
&.accordeon-enter-to,
&.accordeon-leave{
// opacity:1;
height:$h;
// transform: translateY(0%);
// transform: translate3d(0, 0, 0);
}
&.accordeon-enter-active{
transition: all 300ms ease-in-out;
}
&.accordeon-leave-active{
transition: all 200ms ease-in-out;
}
}
@mixin fade-transition() {
&.fade-enter,
&.fade-leave-to{
opacity: 0;
}
&.fade-enter-to,
&.fade-leave{
opacity:1;
}
&.fade-enter-active{
transition: all 300ms ease-in-out;
}
&.fade-leave-active{
transition: all 200ms ease-in-out;
}
}
+2
View File
@@ -8,6 +8,7 @@
</li> </li>
<li class="results"> <li class="results">
<div class="wrapper"> <div class="wrapper">
<transition name="fade" appear>
<span <span
v-if="resultsItems.length && !resultsOpened" v-if="resultsItems.length && !resultsOpened"
title="Ouvrir les resultats" title="Ouvrir les resultats"
@@ -16,6 +17,7 @@
> >
Resultas Resultas
</span> </span>
</transition>
</div> </div>
</li> </li>
</ul> </ul>
+1 -1
View File
@@ -1,5 +1,5 @@
<template> <template>
<transition name="fade-roll"> <transition name="accordeon" appear>
<div <div
v-if="opened" v-if="opened"
id="results" id="results"