Skip to content

Instantly share code, notes, and snippets.

@kreamweb
Last active December 29, 2015 03:08
Show Gist options
  • Save kreamweb/7605112 to your computer and use it in GitHub Desktop.
Save kreamweb/7605112 to your computer and use it in GitHub Desktop.
twitter cycle
jQuery('document').ready(function(){
jQuery('#twitter_update_list').cycle({
fx: 'scrollHorz',
timeout: 5000,
prev: '#prev',
next: '#next',
easing: 'easeInOutBack',
cleartypeNoBg: true
});
jQuery(".twitter a").filter(function() {
return this.hostname && this.hostname !== location.hostname;
}).attr('target', '_blank');
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment