Skip to content

Commit

Permalink
Add 'OutInElastic' easing example in documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
juliangarnier committed Oct 12, 2020
1 parent 7edea3e commit 5d72690
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion documentation/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3620,11 +3620,13 @@ <h3 class="demo-title">Elastic</h3>
<td>in</td>
<td>out</td>
<td>in-out</td>
<td>out-in</td>
</thead>
<tr>
<td><code>'inElastic'</code></td>
<td><code>'outElastic'</code></td>
<td><code>'inOutElastic'</code></td>
<td><code>'OutInElastic'</code></td>
</tr>
</table>
<table>
Expand Down Expand Up @@ -3664,6 +3666,10 @@ <h3 class="demo-title">Elastic</h3>
<div class="small square shadow"></div>
<div class="small square el" data-ease="easeInOutElastic(1, .6)"></div>
</div>
<div class="line">
<div class="small square shadow"></div>
<div class="small square el" data-ease="easeOutInElastic(1, .6)"></div>
</div>
</div>
<script>var elasticEasing = function() {
/*DEMO*/
Expand All @@ -3674,7 +3680,7 @@ <h3 class="demo-title">Elastic</h3>
return el.getAttribute('data-ease');
},
duration: 1000
})
});
/*DEMO*/
}
</script>
Expand Down

0 comments on commit 5d72690

Please sign in to comment.