Sunday, 2 September 2012

Arc Mouse Concept


 If you always happen to struggle with a computer mouse putting it on your leg or on the curved arm of your favorite chair, this new concept is just for you. A new mouse concept, the Arc, may be something you could use. It has been specifically created to be used on curved surfaces.
The Arc mouse has been created by Seunghoon Shin and Chang Seok Kim. It’s an entry into the 2012 IDEA Awards. The most significant thing about the Arc mouse is that it will also do its job pretty well on flat surfaces making it a great all round design.

Saturday, 1 September 2012

Nokia Kinetic Bendy Phone


Unlike many smart phone manufacturers, Nokia keeps inventing and trying new features rather than simply copying features from another systems. Nokia recently presented their latest experiment – Nokia Kinetic Bendy Phone. Special thing about this phone is flexibility. Yes, you can twist it, squeeze it or flex it.
 
The prototype Nokia Kinetic Device, including its display, can be flexed across both the vertical and horizontal planes -- with bending and twisting motions controlling the interface. If you bend the screen towards yourself, it acts as a selection function, or zooms in on any pictures you're viewing. In music mode,

Friday, 31 August 2012

Add drop down menu in blog


Adding drop down menus in blogger can benefit your readers to find out the intended posts of the blog with ease. To add drop down menu in blogger you need is just a little bit of CSS and HTML code
1. HTML
Click on Add a Gadget > HTML/JavaScript link and insert the following type of code
<div id="navigation">
  <ul>
    <li><a href="#">Home</a></li>
    <li><a href="#">About</a></li>
    <li><a href="#">Services</a>
      <ul>
        <li><a href="#">Web design</a></li>
        <li><a href="#">Wordpress</a></li>
      </ul>
     </li>
    <li><a href="#">Contact</a></li>
  </ul>
</navigation>

2. CSS
                Now Navigate to Design > Edit HTML Section. Find this type of code ]]></b:skin> and put this code before it

back to top