Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save CodeMyUI/30ddcdf610f152926cb9 to your computer and use it in GitHub Desktop.
Save CodeMyUI/30ddcdf610f152926cb9 to your computer and use it in GitHub Desktop.
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