Created
February 23, 2016 05:51
-
-
Save anonymous/d6e40136ec942bc9f0fb to your computer and use it in GitHub Desktop.
Curve Text With Using Arhtext.Js
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
<h2 class="example">LOREM IPSUM DOLOR SIT AMET LOL</h2> |
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
$(document).ready(function() { | |
$('.example').arctext({radius: 200}); | |
}); |
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
<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> |
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
* { | |
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