Pages

About

Powered by Blogger.

Followers

19 March 2014

Banished Game

by Unknown  |  in GAMES at  3/19/2014
  
                        Banished is strategic game developed by shining rock company. This game contain the development of city by building house, planting trees, hunting,marketing,survival, etc..
This game contain high graphics content and it run on low configuration computers. The game size is small.


Click  DOWNLOAD to download the game.

This game play for the game Banished is shown below
 

7 January 2014

Waze- Community based Traffic and Navigation app

by Unknown  |  in TIPS at  1/07/2014

      Waze is Community based android app for Traffic and navigation. This android app provide Navigation,Traffic blocks,Speed Cams, petrol pumps, hotel etc.. based on the waze application.
If you are sign up on this app it provide a community based on your location it provide a better solution for your trip.

The waze provide all the things you need based on the following method, if you find a speed camera,petrol pump etc .then mark it on the waze map you used, it provide the information you added to the other waze users and it will help others.

Waze provide a better navigation map, so it will help to drive very easily.
To know more Click here

24 October 2013

Download Windows 8.1

by Unknown  |  in SOFTWARES at  10/24/2013


The Microsoft latest operating system Windows 8.1 is now available for download. The windows 8 users can update their operating system to latest version 8.1 by online windows stores . The new version is available in market within few weeks. 

 Windows 8 to bring a modern computing technology experience to businesses and to help professionals stay connected to their colleagues and clients from anywhere, anytime. Windows 8.1 advances to this vision and introduces new manageability,security, mobility,  user experience and networking capabilities–with the goal of offering customers the best business tablets and versatile modern business PCs driven by the most powerful operating system designed for today’s modern businesses.

For more information click below link

8 September 2013

How to rotate a div panel on mouse over using css

by Unknown  |  in TIPS at  9/08/2013
                                        We Can rotate the div panel on mouse over by using CSS styles. also the color of the rotating div panel change on the mouse over.
 you can change the angle of rotation by any degree in defining rotate(x deg). also you can add this property to an image by using the same id to the image tag.


                                 before rotate                                               after rotate

*copy the code and paste in the head section

<style type="text/css">
 #submenu
 {
      background-color:#0F9;
       -webkit-transition: all 1s ease-in-out;
        -moz-transition: all 1s ease-in-out;
         -o-transition: all 1s ease-in-out;
          transition: all 1s ease-in-out; }
           #submenu:hover
           {
           background-color:#F00;
            -webkit-transform: rotate(360deg);
             -moz-transform: rotate(360deg);
              -o-transform: rotate(360deg);
 -ms-transform: rotate(360deg);
  transform: rotate(360deg);
   }

   </style>

* add the submenu id to the div panel

<div id="submenu"  style="width:100px; height:100px; margin-left:100px; margin-top:200px;" align="center" ><img src="../../../Public/Pictures/Sample Pictures/Hydrangeas.jpg" /></div>

How to enlarge a div panel on mouse over using css

by Unknown  |  in TIPS at  9/08/2013
                                                      In web designing there lots of styles can be applied to div panel for create a better user friendly site. By using css styles to div panel we can enlarge the div panel and its contents. if we place a picture in the div panel on the mouse over the picture and div panel are enlarging.   We can define the amount of enlarging dimension in the code also we can change the color of the enlarging div panel on the mouse over.







Before mouse over                                                          Aftermouse over


* copy the below code and paste it in the head section.

<style type="text/css">
 #submenu
 {
        background-color: #eee;
        -webkit-transition: all 1s ease-in-out;
        -moz-transition: all 1s ease-in-out;
        -o-transition: all 1s ease-in-out;
         transition: all 1s ease-in-out;

 }
   #submenu:hover
  {
        background-color: #fc3;
       -webkit-transform:  scale(2);
       -moz-transform:  scale(2);
       -o-transform:  scale(2);
      -ms-transform:  scale(2);
       transform:  scale(2);
   }

   </style>


* create a div and call the id as submenu

<div id="submenu"  style="width:100px; height:100px;" align="center" ><img src="image url"/></div>

Proudly Powered by Blogger.