Ads
Showing posts with label Tips. Show all posts
Showing posts with label Tips. Show all posts

Wednesday, 16 September 2015

Travelling With The iPhone on Your Hand

Travelling With The iPhone on Your Hand. Do you like to travel? Are you on the road constantly for business? Then the Apple iPhone may be the phone of choice for you. The reason for this is that the iPhone has a GPS navigator built into it. If you are always on the go, a navigator is what you need. Fussing with maps and asking for directions is a thing of the past. Nowadays, tech savvy people have a navigation system in their cars. With an iPhone, you always have your navigator with you, no matter who is driving. Travel and your iPhone; it's a match made in heaven.

Travelling With The iPhone on Your Hand
Travelling With The iPhone on Your Hand [images:pixabay.com]

Why would you need a navigator on your cell phone? Anytime you need directions, to a new club perhaps, just tell it where you want to go an viola' directions are there. Even those of us who are no longer part of the club scene will benefit from having a navigation system with us at all times. You can use this to quickly find directions to the field your kid should be playing on. Perhaps the directions given to a friends party were vague. These are all situations where having a navigations system like the one included with the iPhone comes in very handy. Lost in the desert? (yes it happens) Then you really need the navigation system on your iPhone.

In addition to the navigation system there are other reasons to make sure you have your iPhone with you when you travel. Aside from the fact that you will always have a cell phone with you, another advantage is that all of your entertainment is with you as well. If you are taking a long drive and there is nothing to see but cornfields for the next 400 miles, having movies, eBooks and music to entertain you can be a godsend. With the iPhone, you can take your movies and television shows with you wherever you go. This is another reason for pairing up travel and your iPhone.

Are travel and your iPhone really a good match? Let's take a look and see. For example, instead of stopping to ask directions, you can get the information that you need right there on your iPhone. The Apple iPhone is right there to help you find your way with the ability to view satellite images of major street names. The iPhone can help you find landmarks and other things that you might be interested in along the way on your trip. It's like having a navigator right there with you in your car, letting you know what you need to know and getting you where you need to go.

Now that you know why travel and your iPhone make such a good pair, remember to keep this in mind for your next trip. Be sure to load up on plenty of movies, eBooks, TV shows and music. Use your Apple iPhone to plan your travel route. Check the navigation system for points of interest along the way and make sure that you visit some of them. You can even mark the gas station along or near your route so you can plan a fill-up before it becomes an issue. 

Google Maps for iPhone (Tips and Tricks)


Css Button With Drop Shadow Effect

Every website need the button on the page, button is the main focus to capture the user input data for the website. Today I am also discussing about the button and how we can better use the CSS3 to create the nice and elegant and fancy normal and 3D buttons. In old traditional method we use the button html control in the web page, But it looks was not elegant like Button created in CSS3. We are going to use also same old button html control with CSS3 and it make the button to nice and with good transition effects. We can create the beautiful rounded corner css button using css3 which we can;t do with older version of css. Before we are going to use of css we need to create the html button control using the following syntax. We can place button to any other html container on the web page.
Css Button With Drop Shadow Effect
Css Button With Drop Shadow Effect

How to Make Icons Buttons With Various top and under shadow Effects . Sometimes from a button on a page posting we can make visitors to be impressed and want to also put it on their blogs , because the buttons have a certain appeal in terms of both appearance and color and this time I was right to share a tutorial how to create a button on the post pages blog with Transition Background effect .

Let's start to add the Icons Buttons With Various Effects:

Step 1: Login to your blogger panel admin
Step 2: Click On Template » Edit HTML
Step 3: Using Ctrl+F  Find the code ]]></b:skin> or </style>
Step 4: Add this code just above the code </skin> or </style>
Step 5: Save Template.

button{position: relative;color: rgba(255,255,255,1);text-decoration: none; font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;font-weight: bold ;font-size: 2.2em;display: block;padding: 20px;margin: 120px auto;width: 240px;text-align: center;border:0px;outline:0px;} /* css for TOP */.top { background-color: rgba(153,14,153,1);-webkit-transition: all .1.5s ease;-moz-transition: all .1.5s ease;-ms-transition: all .1.5s ease;-o-transition: all .1.5s ease;transition: all .1.5s ease; -webkit-border-radius: 12px;-moz-border-radius: 12px;border-radius: 12px; -webkit-box-shadow: 0px 0px 25px rgba(0,0,0,.7), 0px -9px 0px rgba(105,7,105,1);-moz-box-shadow: 0px 0px 25px rgba(0,0,0,.7), 0px -9px 0px rgba(105,7,105,1);box-shadow: 0px 0px 25px rgba(0,0,0,.7), 0px -9px 0px rgba(105,7,105,1); }
.top:active{ -webkit-box-shadow: 0px 0px 6px rgba(0,0,0,.9), 0px -3px 0px rgba(153,14,153,1);-moz-box-shadow: 0px 0px 6px rgba(0,0,0,.9), 0px -3px 0px rgba(153,14,153,1);box-shadow: 0px 0px 6px rgba(0,0,0,.9), 0px -3px 0px rgba(153,14,153,1);position: relative;top: 10px;border:0px;}/* css for Under */.under { background-color: rgba(105,7,105,1);-webkit-transition: all .1.5s ease;-moz-transition: all .1.5s ease;-ms-transition: all .1.5s ease;-o-transition: all .1.5s ease;transition: all .1.5s ease; -webkit-border-radius: 12px;-moz-border-radius: 12px;border-radius: 12px;-webkit-box-shadow: 0px 9px 0px rgba(153,14,153,1), 0px 9px 25px rgba(0,0,0,.7);-moz-box-shadow: 0px 9px 0px rgba(153,14,153,1), 0px 9px 25px rgba(0,0,0,.7);box-shadow: 0px 9px 0px rgba(153,14,153,1), 0px 9px 25px rgba(0,0,0,.7);
}
.under:active{ -webkit-box-shadow: 0px 3px 0px rgba(153,14,153,1), 0px 3px 6px rgba(0,0,0,.9);-moz-box-shadow: 0px 3px 0px rgba(153,14,153,1), 0px 3px 6px rgba(0,0,0,.9);box-shadow: 0px 3px 0px rgba(153,14,153,1), 0px 3px 6px rgba(0,0,0,.9);position: relative;top: 10px;border:0px;}

Step 6: Then add the following HTMLcode on the posting page area.

Top Shadow Effect

<button class="top">Top Shadow Effect</button>

Buttom Shadow Effect

<button class="under">Buttom Shadow Effect</button>

The Results


That's all about  Css Button With Drop Shadow Effect , i hope this article can help you, also look forward for my next tutorial, thanks.
Source images : pixabay.com