Skip to content

Instantly share code, notes, and snippets.

@sxidsvit
Created June 11, 2017 16:36
Show Gist options
  • Select an option

  • Save sxidsvit/82351b5116f99f79b4aa3fc5f168dc4d to your computer and use it in GitHub Desktop.

Select an option

Save sxidsvit/82351b5116f99f79b4aa3fc5f168dc4d to your computer and use it in GitHub Desktop.
Typed effect for text (text typing animation)
<!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