Guest User

Untitled

a guest
May 27th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. function fadeIn(quoteSpans) {
  2. Array.prototype.forEach.call(quoteSpans, function(word) {
  3. let animate = word.animate([{
  4. opacity: 0,
  5. filter: "blur(3px)"
  6. },{
  7. opacity: 1,
  8. filter: "blur(0px)"
  9. }],
  10. {
  11. duration: 1000,
  12. delay: delay,
  13. fill: 'forwards'
  14. }
  15. );
  16. delay= delay+300;
  17. })
  18. }
Add Comment
Please, Sign In to add comment