Forked from anonymous/Curve Text With Using Arhtext.Js.markdown
Created
February 23, 2016 05:51
Star
You must be signed in to star a gist
Curve Text With Using Arhtext.Js
This file contains 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 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 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 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