Create your own SVG drawings (such as Twitter/Facebook/etc. logos), upload them to IcoMoon and voilà: you have a custom webfont you can use. If you want to have more control, you can do it manually if you like. IcoMoon →
Tag Archives: css3
jQuery Transit
jQuery Transit is a plugin for to help you do CSS transformations and transitions in jQuery. Include the plugin and you can use code like this to perform transformations: $(“#box”).css({ x: ’30px’ }); // Move right $(“#box”).css({ y: ’60px’ }); // Move down $(“#box”).css({ translate: [60,30] }); // Move right and down $(“#box”).css({ rotate: ’30deg’ …