Skip to main content

Posts

Showing posts from 2014

Quotes of Narendra Modi

The Best notable quotes of Narendra Modi, Prime minister of India. If you work 12 hours, I will work 13. If you work 14 hours, I will work 15 hours, because I am not Pradhan Mantri (Prime Minister) I am the Pradhan Sewak (prime servant). From ramparts of the Red Fort, I would like to call people of the world to 'come, make in India'. Come here and manufacture in India. Sell the products anywhere in the world but manufacture here. Our heads hang in shame when we hear about rapes. Parents ask about daughters but did anyone dare ask their sons. After all, the rapist is someone's son. As parents, have we asked our sons where he is going? Why not put same yardstick for sons too? If we want to get rid of poverty, we need to get rid of financial untouchability. - (Launch of the Jan Dhan Yojana to help provide bank accounts to all Indians) The mantra of our country's youth should be to at least make one product that we import. Don't compromise in manufacturin...

అతిలోక సుందరి

ఒక రెండు నెలలు ప్రాజెక్ట్ వర్క్ కోసం నన్ను  కోయంబతుర్ కి పపించారు మా మేనేజర్ , నేను ఏదో పుడింగ్ అనుకోని. యాంత్రిక జీవితం లో మునిగి పోయి, విసిగి పోయిన  నేను అనుకోకుండా ఒక అతిలోక సుందరి ని చుసాను. నా కళ్ళు ఇప్పటి వరకు చూడని ఒక అద్బుతాన్ని చూసినట్టు అలాగే చూస్తూ వున్నాయి...  ఆ అమ్మాయి ఎంత అందంగా వుంది అంటే చుసిన వాళ్ళు చెప్పలేను అంత , చూడని వాళ్ళు ఊహించలెని అంత అందంగా  వుంది... సినిమా లో చుపునిచినట్టు అంత స్లో మోషన్ లో వెళ్తున్నాట్టు వుంది. నేను గనక కవి ని అయ్యి వుంటే చుసిన వెంటనే ఒక 10 కవితలు రాసే వాడిని. అంత సింపుల్ గ అందంగా అతిలోక సుందరి ల వుంది మరి .  అహ్హ్ అమ్మాయి పేరు sariga అంట పక్కనే ఉన్న ఎవరో పిలుస్తుంటే విన్న. చూస్తూ వుంటే తెలుగు అమ్మాయి లా ఉన్న తెలుగు మాత్రం కాదు ..  ఐన పేరు , ఊరు ఏది అయితే ఏంటి ఐశ్వర్య రాయ్ ని ఈ అమ్మాయి ని పక్కన పెడితే నేను ఈ అమ్మాయే అందంగా వుంది అని ఆలోచించ కుండ చెప్తా. రోజా పువ్వు అమ్మాయిగా మారితే ఎలా వుంటుందో అల వుంటుంది ....  వెళ్లి మాట్లాడాలని, ఒక ఫోటో  తీస్కున్దామని అనిపించిం...

Long Text with Ellipsis using CSS ( Text with ellipsis... )

We see in many places the label values or some other places that the text is very long. If the text is too long it wraps to the new line. But if you dont want text to wrap to new line and show ellipsis. This below CSS style will help you. Eg: <p class="ellipsisStyles"> This is an example to show the usage of long text with ellipsis </p> If you want this text not to be wrapped and to be showed as "This is an example to ..." with ellispsis. .ellipsisStyles{      text-overflow:ellipsis;      overflow:hidden;      width:100px;      whitespace: no-wrap; }

Change/increment the background position using Jquery dynamically (Moving Background)

Change/increment the background position using JQuery dynamically Background position is one of the style in the background style group. As the name defines this background position is to position the background image. We may come across some situations where we need to move the background as in the games, or in the parallax effect. The main line to work as moving background Suppose u need the clouds moving as the background, just use this code and that works fine.           $("div").animate({"background-position":"+=20%"}); use this statement repeatedly using some looping technique. you will see the clouds moving at background...

Make the Navigation Menus with equal width

For every website the navigation menu plays a key role. This navigation menu should be in clear and precise. To make the navigation menu look better even in the lower resolution we have to make them responsive by giving equal width to each item. Here is the procedure to make each menu item with equal width. To make all the elements having equal width and full width of the parent use as <ul>      <li>a</li>      <li>b</li>      <li>c</li>       <li>d</li> </ul> styles ul{ display:table; } li{ display:tabel-cell; float:none; text-align:center; }