Skip to content

Instantly share code, notes, and snippets.

@mekuls
Created July 9, 2012 08:56
Show Gist options
  • Save mekuls/3075222 to your computer and use it in GitHub Desktop.
Save mekuls/3075222 to your computer and use it in GitHub Desktop.
JQuery Cycle text
<html>
<head>
<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js'></script>
<script src='http://malsup.github.com/jquery.cycle.all.js'></script>
</head>
<body>
<div id='slideshow'>
<div>Morons</div>
<div>Not Morons</div>
<div>Definately Morons</div>
</div>
<script>
$('#slideshow').cycle({
cleartype: false // disable cleartype corrections
})
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment