Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. setTimeout( function() {
  2. var ttes = document.querySelectorAll( '.tte_wrapper' );
  3. Array.prototype.forEach.call( ttes, function( el ) {
  4. var typeAttr = el.getAttribute( 'data-effect' );
  5.  
  6. // Make the element visible and remove original text.
  7. // Original text is for SEO.
  8. var mid = el.querySelector( '.tte_mid' );
  9. mid.innerHTML = '';
  10. mid.style.opacity = '';
  11.  
  12. if ( typeAttr === 'typing' ) {
  13. window._tteInitEffectType( el );
  14. } else if ( typeAttr === 'fade' || typeAttr === 'top-to-bottom' || typeAttr === 'bottom-to-top' || typeAttr === 'vertical-flip' ) {
  15. window._tteInitEffectFade( el );
  16. } else if ( typeAttr === 'random-letters' ) {
  17. window._tteInitEffectRandom( el );
  18. } else if ( typeAttr === 'text-scrambled' ) {
  19. window._tteInitEffectScrambled( el );
  20. }
  21.  
  22. } );
  23. }, 1 )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement