Google Adsense News
->
File Size: 124.24 kB (compressed)
File Format: EPS
http://dryicons.com/free-graphics/download/swirly-circles/
Photoshop is great to use for creating quality icon designs. In this tutorial I will teach you how to make a professional, shiny, clean graduation hat icon. The techniques in this tutorial will help you graduate to the next level in icon design.
In this tutorial we will color a black and white photo using gradient maps, solid colors, and the “color” blending mode. Using these techniques, you will be able to hand color any black and white photo in a way that looks photorealistic.
Every month we take a look around and select some of the most interesting web-development-related web-sites. We read articles, check out tools, analyze the advantages of new resources. Below you’ll find useful references, tutorials, services, tools, techniques and articles we’ve found over the last 30 days - an overview of web-sites you shouldn’t have missed in April 2008.
All images can be clicked and lead to the sites from which the screenshots have been taken.
ddmenu is a simple MooTools-based script to create you’re own context menus.
<link rel="stylesheet" href="css/ddmenu.css" type="text/css" media="screen" /> <script type="text/javascript" src="js/mootools-beta-1.2b1.js"></script> <script type="text/javascript" src="js/moo.ddmenu.0.2.js"></script>
<div class="ddmenu def" id="ddmenu2" style="display:none"> <ul> <li class="title">Menu Title</li> <li class="item" id="menu_item1"><a href="#">My item 1</a></li> <li class="item" id="menu_item2"><a href="#">My item 2</a></li> <li class="item" id="menu_big_item"><a href="#">This is a oversized item...</a></li> <li class="sepline"></li> <li class="item" id="menu_item_with_icon1"><a class="objects" href="#">Another item</a></li> <li class="item" id="menu_item_with_icon2"><a class="letter" href="#">Disabled item</a></li> <li class="item" id="menu_item_with_icon3"><a class="umbrella" href="#">With icon</a></li> <li class="sepline"></li> <li class="item" id="menu_spec_links"><a href="#">Enable on Links</a></li> <li class="item" id="menu_spec_texts"><a href="#">Enable on Texts</a></li> <li class="item" id="menu_spec_images"><a href="#">Enable on Images</a></li> </ul> </div>
function iniz () { pagemenu = new DDMenu ('ddmenu2', document, { //document can be the whole page, //an element or a parent of elements onOpen: function (e) { this.enableItems(true); //enable all this.enableItems('menu_item_with_icon2',false); //disable menu_item_with_icon2 }, onItemSelect: function (act_id, act_el, menu_bindon) { console.info("menu action -> item id: \"%s\" from: %o in %o", act_id, act_el, menu_bindon) } }); }