Thursday, 31 December 2015

                          

MAHATMA GANHIJI MEMORIAL

                    

                Mahatma Gandhiji Memorial is also called Gandhiji mandapam.It is one of the visiting place in kanyakumari for the tourist and  very beautiful and add to the attraction of KK district. The beautiful Gandhi Memorial completed in 1956, is situated as a memorial to the Father of the Nation.
Speciality in GANDHIJI MANDAPAM:
                      Its focal shape is 79 feet high speaking to the age of the Mahatma at the season of the sun at Mid-day on second October would fall on the peedam through an opening in the rooftop. That is extremely extraordinary in Mahatma Gandhiji Mandapam. Having part of works of art about Mahatma Gandhi history for review by visitor. The dedication was exchanged to the managerial control of the Public (Information and Public Relations) Department from Public Works in the year 1978. Mahatma Gandhi went by Kanyakumari twice in 1925 and 1937. Mahatma Gandhi went to Kanyakumari in January 1937. In 1948 his cinders were inundated in the ocean waters in Kanyakumari . The perspective of the boundless ocean can be see from the second floor and



About  Architecture:
                    This memorial is known for its pink architecture which is designed in the form of an archetypal Orissa temple. It is constructed at a place on the seashore, near to Kumari Amman Temple, where his ashes were kept for public darshan before immersion in the sea on February 12, 1948. The Mandapam is built in Orrisa style of architecture and designed in such a way that on his birthday, 2 October, the rays of the sun, through a hole on the roof, falls exactly on the place where the urn was kept.                       .        
Route  map:

Image result for route map kanyakumari
By road:

By rail:             
       Some of the trains plying to and from Kanyakumari are: 
    • Chennai Egmore Express
    • Tiruchirappalli - Howrah Express
    • Himsagar Express
By air:
        Kanyakumari does not have an airport of its own. The nearest airport serving the town is Thiruvananthapuram Airport, which is 80 km away from the place. Taxi services are available from this international airport to take you to Kanyakumari.
Visiting Hours :7 AM To 7 PM.

 Entrance Fee: free

Wednesday, 30 December 2015

     In the following example will help you to dynamically change the button text using javascript.
Same Example in jQuery Click Here


Example

 var b1=document.getElementById('btn1');
 b1.value="First Button";





Example Program:- (Editor)


Editor is Loading...

Advertisement

     val() is used to change the button text value, in the following example we are used two buttons and change its text dynamically when pressing on the button.
Same Example in JavaScript Click Here

 $("#btnid").val("Second Button");




Example Program:- (Editor)


Editor is Loading...

Advertisement

Tuesday, 29 December 2015

     JavaScript have toLowerCase() method for converting the text to Lowercase letters.


 ("String").toLowerCase();




Example Program:- (Editor)


Editor is Loading...

Advertisement

     When we use the check box the materialize css will convert the design automatically.



Example Program:- (Editor)


Editor is Loading...

Advertisement

Monday, 28 December 2015

     One of the website attracting way is animating title bar, it will reduce the website idl state time. It is very easy to place it.

Example image
     This screen was taken from chrome browser. Can you see the title bar of the window is rotating, this also rotating in the windows status bar.










Animate title bar in blogger
Add animation press here

     If the above button is not work or want to modified the title name follow the steps, otherwise leave all the below steps.
Step 1
     Login to your blogger by entering your username and password.


Step 2
     Select your blogger, by clicking Go to post list  button.

Go to blogger post list

Step 3
     Go to layout and press Add gadget.

Add Gadget in blogger


Step 4
     After press the Add gadget a popup window is opened, in that window scroll and select the  HTML/JavaScript.

Add HTML-JavaScript Window in Blogger



Step 5
     Another window is opened and ask Title and Content, leave the Title field and copy the below code and paste it to the Content box.



<script type='text/javascript'>

msg = document.title;

msg = msg + ".";

position = 0;



function scrolltitle() {

  document.title = msg.substring(position, msg.length) + msg.substring(0, position);

  position++;

  if(position > msg.length) position = 0

  window.setTimeout("scrolltitle()", 110);

}

scrolltitle();

</script>

Paste the html-javascript code on blogger

Note:
     If you want to change the title text with extra text, add the text after or before the msg = msg+".";
eg: msg="My extra text "+msg;

Step 6:
     Finally save it and open your blog url, your title is animating.


Thursday, 24 December 2015

     jQuery have default design for tabs. We need to import the jquery plugin and jQuery UI plugin then only the tabs() method works properly with good design.
     A single content area with multiple panels, each associated with a header in a list.




Example Program:- (Editor)


Editor is Loading...

Advertisement

Wednesday, 23 December 2015

     Radio Button with-gap class, this class is used to create the radio button filled with gap in selected radio buttons.


    <input class="with-gap" name="grp1" type="radio" id="r1">

    <label for="r1">with-gap Class 1</label>



    <input class="with-gap" name="grp1" type="radio" id="r2">

    <label for="r2">with-gap Class 2</label>



Example Program:- (Editor)


Editor is Loading...

Advertisement

     Materialize css have default class for radio button design, and no need to apply any special class. The materialize css will take the style when you define radio button.


    <input name="grp1" type="radio" id="r1">

    <label for="r1">Radio 1</label>



    <input name="grp1" type="radio" id="r2">

    <label for="r2">Radio 2</label>




Example Program:- (Editor)


Editor is Loading...

Advertisement

      In materialize css we can easy to create the drop down list, when we use dropdown list in materialize css we should need to initiate the dropdown list in document ready.


  <div class="input-field">

    <select>

      <option value="">Choose your option</option>

      <option value="1">India</option>

      <option value="2">USA</option>

      <option value="3">Gujarath</option>

    </select>

    <label>Choose your place</label>

  </div>





<script>

$(document).ready(function() {

$('select').material_select();

});

  </script>




Example Program:- (Editor)


Editor is Loading...

Advertisement

     The following example can create the textarea with icon using materialize css.



Example Program:- (Editor)


Editor is Loading...

Advertisement

Tuesday, 22 December 2015

     materialize-textarea  and input-field class is used to create a textarea in materialize css.


     <textarea id="txta1" class="materialize-textarea"></textarea>



Example Program:- (Editor)


Editor is Loading...

Advertisement

     If we want to add special icon in materialize css we need to import the following plugin.


 <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">



Example Program:- (Editor)


Editor is Loading...

Advertisement

     Given a jQuery object that represents a set of DOM elements, the .slice() method constructs a new jQuery object containing a subset of the elements specified by the start and, optionally, end argument. The supplied start index identifies the position of one of the elements in the set; if end is omitted, all elements after this one will be included in the result.




Example Program:- (Editor)


Editor is Loading...

Advertisement