Skip to content

Instantly share code, notes, and snippets.

  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
Curve Text With Using Arhtext.Js
<h2 class="example">LOREM IPSUM DOLOR SIT AMET LOL</h2>
$(document).ready(function() {
$('.example').arctext({radius: 200});
});
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="http://tympanus.net/Development/Arctext/js/jquery.arctext.js"></script>
* {
padding:0;
margin:0;
}
body{
background:#eee;
font-family:helvetica;
text-align:center;
}
.example {
margin-top:50px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment