1stwebdesigner |
Ultimate Roundup of 95 Free Gadgets PSDs Downloads Posted: 01 Jul 2010 02:00 PM PDT In this article I compiled a list of 95 free gadgets PSD resources from talented designers all around the web for you to use in your start-up projects, print designs or in web designs. These wonderful gadgets designed from real life gadgets and range from phones, monitors, laptops, cameras and other very useful and handy gadgets. All the resources are of high quality PSD files available free for you to download and use but you better take a look at the license before you use any PSD file.
All the gadgets are categorized in 7 categories so that you can easily find the resource you are looking for (clicking on the category will navigate you to it):
Phones1. Apple iPhone 4G2. Htc Dream3. HTC EVO 4G4. Motorola Droid5. HTC Touch 2 Smartphone6. Wall Phone7. Phone: DC-660i8. RIM Blackberry9. Nexus One by Google10. Tv Mobile11. Motorola Droid12. Motorola Droid X13. HTC Dream Android14. HTC HD2 Smartphone15. HTC Incredible Smartphone16. HTC Eris Smartphone17. Nokia 531018. Nokia 3500c19. HTC Diamond20. LG KS36021. HTC Mondrian Concept22. Nokia N9623. NOKIA 5800 XpressMusic24. Samsung Corby S365025. BlackBerry Storm26. Fully Layered PSD Abstract Phone27. iPhone 3G28. Old TelephoneScreens & Monitors1. LCD UltraHD 350dpi PACKandPLUS2. iMac3. PLASMA TV4. Flat Screen Television5. iMac reviewed 2.06. Samsung Monitor7. Led Cinema Display8. LG Plasma TV9. Widescreen LCD TV10. 4 Retro TV Icons11. Samsung P2370 Computer MonitorPC, Laptops & Tablets1. Dell Vostro2. Macbook Air3. MacBook Pro4. TabletPC5. Tablet PC – layered6. iPad7. HP – Screen and PC8. Full Layered MacBook Air & MacBook Pro9. Mac Mini10. Mac Pro11. The MacBook In Black12. Silver Rack ServerMedia Players1. Microsoft ZUNE2. iPod nano 5G3. Phony CD Player4. iPod PSD5. iPod nano-chromatic6. iPod Touch7. iPod Shuffle8. Zune HD9. Apple remote10. Zen Stone – ColorsMouses, Keyboards, Headphone & Speakers1. Apple Keyboard2. Full Keyboard3. Keyboard Apple4. iMac Mouse5. Mouse Digital6. Mighty Mouse7. Mac iMouse8. Customizable Speaker9. Headphones Resource10. PSD Speakers11. Headphones12. SpeakersVideo Games Consoles1. Xbox 3602. Xbox 3603. Sony PSP4. Sony Playstation 3 Slim5. PlayStation36. PlayStation 1 Console7. Nintendo Wii Black8. Nintendo DS Lite9. Nintendo DS Lite10. Fully Layered PSPMisc Gadgets1. Retro Clock2. Layered Olympus Digital Camera Icon3. Retro Audio Tape4. AirPort Extreme5. Airport Express6. Digital Camera7. debLURR : Digital Camera8. KODAKZx1 Video Camera9. Sony Cyber-Shot W30010. PSD Wireless Router |
How to Create a “Stay-On-Top” Menu with CSS3 and jQuery Posted: 01 Jul 2010 03:00 AM PDT In the project I was working on recently I had a chance to experiment with CSS3 and jQuery. You know CSS3, right? It’s that thing that makes all those beautiful and amazing things on the web and makes Flash want to run away and hide. Yeah, that CSS3. And I’m more than sure you have heard about jQuery. If you haven’t, well, it’s a kind of library where you cannot borrow any books, but it allows you to do other stuff and bring some additional magic to the web. Anyways, I ended up mixing those two which resulted in this cool effect. I found it really useful and hope you will too, as you can use in on almost every website that has some sort of menu – and let’s face it, most do. The video below will show you what you’ll be making and how to do that. Unfortunately, since I had only 5 minutes for this, I focused only on the jQuery part. Everything else you need for this you will find in the tutorial below. You can also hit the “Live Demo” button to see the final effect yourself. NOTE: To fully enjoy all of this extravaganza, you need to see it in a browser based on WebKit engine – Safari and Chrome being the best ones. Current version of Firefox doesn’t fully support it, not to mention Opera, or IE. Table of Contents
What’s NeededJust four things and we’re good to go:
HTML markup will be just copy-and-paste thing, as it’s not really important here. Instead, we will dig little deeper into CSS3 and jQuery. All the HTML StuffCreate index.html and paste all of this in: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Create Stay-On-Top Nagging Menu with CSS3 and jQuery</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <link rel="stylesheet" href="style.css" type="text/css" media="screen" /> </head> <body> <div id="header"></div> <div id="navi"> <div id="menu" class="default"> <ul> <li><a href="#">Home</a></li> <li><a href="#">CSS</a></li> <li><a href="#">Design</a></li> <li><a href="#">Development</a></li> <li><a href="#">Freebies</a></li> <li><a href="#">Inspiration</a></li> <li><a href="#">Resources</a></li> <li><a href="#">Tutorials</a></li> <li><a href="#">WordPress</a></li> </ul> </div><!-- close menu --> </div><!-- close navi --> <div id="content"> <p> Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. </p> <p> Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. </p> <p> Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. </p> </div><!-- content --> </body> </html> Depending on your screen resolution, you will need a lot of text so… IMPORTANT: Keep adding paragraphs with “lorem ipsum” until the menu disappears from your sight entirely when you scroll down to the very bottom of the page. Importing jQuery and Nagging Menu ScriptIn your index.html file, just before the closing <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" charset="utf-8"></script> <script type="text/javascript" src="nagging-menu.js" charset="utf-8"></script> Bravo ;D! Let’s Make a CSS SoupThis is just the basic CSS, so create style.css file and paste all of this in: body { background: #efefef; margin: 0; padding: 0; border: none; text-align: center; font: normal 13px Verdana, sans-serif; color: #222; } #navi { height: 50px; margin-top: 50px; } #menu { line-height: 50px; text-align: center; margin: 0 auto; padding: 0; } #content { width: 750px; margin: 0 auto; margin-bottom: 25px; padding: 30px 0; text-align: left; } ul { padding: 0; } ul li { list-style-type: none; display: inline; margin-right: 15px; } ul li a { color: #fff; text-decoration: none; padding: 3px 7px; } ul li a:hover { background: #01458e; color: #ff0; } .default { width: 850px; height: 50px; } .fixed { position: fixed; top: -5px; left: 0; width: 100%; } The CSS3 ExtravaganzaNow for the fun part :)! Let’s go from the top to the bottom through our CSS soupe and add some CSS3 sugar accordingly: Step 1: Spicing Up |
You are subscribed to email updates from 1stwebdesigner - Graphic and Web Design Blog To stop receiving these emails, you may unsubscribe now. | Email delivery powered by Google |
Google Inc., 20 West Kinzie, Chicago IL USA 60610 |
Comments (0)
Post a Comment