Created
January 26, 2012 11:35
-
-
Save adactio/1682367 to your computer and use it in GitHub Desktop.
A quick'n'dirty way of doing some lettering.js stuff without jQuery.
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<title>Test</title> | |
<style> | |
.slogan span:nth-child(odd) { | |
color: red; | |
} | |
</style> | |
</head> | |
<body> | |
<span class="slogan">Testing</span> | |
<script> | |
function sliceString(selector) { | |
if (!document.querySelector) return; | |
var string = document.querySelector(selector).innerText, | |
total = string.length, | |
html = ''; | |
for (var i=0; i<total; i++) { | |
var letter = string.charAt(i); | |
html+= '<span class="'+letter+'">'+letter+'</span>'; | |
} | |
document.querySelector(selector).innerHTML = html; | |
} | |
sliceString('.slogan'); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks! One problem though, to get your example to work in FireFox I had to change
innerText
toinnerHTML
:var string = document.querySelector(selector).innerText
I don't know much javascript so not sure if that would cause other problems...