Created
June 11, 2017 16:36
-
-
Save sxidsvit/82351b5116f99f79b4aa3fc5f168dc4d to your computer and use it in GitHub Desktop.
Typed effect for text (text typing animation)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Typed effect</title> | |
| </head> | |
| <body> | |
| <div class="element"></div> | |
| <script src="https://code.jquery.com/jquery-3.2.1.min.js" type="text/javascript"></script> | |
| <script src="https://cdn.rawgit.com/mattboldt/typed.js/master/js/typed.js" type="text/javascript"></script> | |
| <script> | |
| $(document).ready(function(){ | |
| $(".element").typed({ | |
| strings: ["Первое предложение.", "Второе предложение."], | |
| typeSpeed: 0, | |
| startDelay: 250, | |
| }); | |
| }); | |
| </script> | |
| </bod |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment