W3.CSS Dropdowns







googletag.cmd.push(function() { googletag.display('div-gpt-ad-1422003450156-2'); });



W3.CSS Dropdowns



❮ Previous
Next ❯






Link 1
Link 2
Link 3




W3.CSS Dropdown Classes


W3.CSS provides the following dropdown classes:



















Class Defines
w3-dropdown-hover A hoverable dropdown element
w3-dropdown-content The dropdown part to be displayed
w3-dropdown-click A clickable dropdown element



Dropdown Elements



The w3-dropdown-hover class defines a hoverable dropdown
element.



The w3-dropdown-content class defines the dropdown content to be
displayed.



Example



<div class="w3-dropdown-hover">
  <button class="w3-button">Hover Over Me!</button>
  <div class="w3-dropdown-content w3-bar-block w3-border">
    <a href="#" class="w3-bar-item w3-button">Link 1</a>
    <a href="#" class="w3-bar-item w3-button">Link 2</a>
    <a href="#" class="w3-bar-item w3-button">Link 3</a>
  </div>
</div>


Try it Yourself »




Both the hoverable element and the dropdown content element can be any HTML element.


In the example above the hover element was a <button>, and the dropdown
content a <div>.


In the next example the hover element is a <p>, and the
dropdown content is a <span>:



Example



<p class="w3-dropdown-hover">Hover over me!
 
<span class="w3-dropdown-content w3-green">Hello World!</span>
</p>


Try it Yourself »










googletag.cmd.push(function() { googletag.display('div-gpt-ad-1493883843099-0'); });






Menu Dropdowns


The w3-dropdown-hover class is perfect for creating navigation
bars with dropdown menues:




Home
Link 1



Link 1
Link 2
Link 3





Example



<div class="w3-bar w3-light-grey">
  <a href="#" class="w3-bar-item
w3-button">Home</a>
  <a href="#" class="w3-bar-item w3-button">Link
1</a>
  <div class="w3-dropdown-hover">
    <button
class="w3-button">Dropdown</button>
    <div
class="w3-dropdown-content w3-bar-block w3-card-4">
     
<a href="#" class="w3-bar-item w3-button">Link 1</a>
      <a href="#"
class="w3-bar-item w3-button">Link
2</a>
      <a href="#" class="w3-bar-item
w3-button">Link 3</a>
   
</div>
  </div>
</div>

Try It Yourself »


Note: You will learn more about Navigation Bars later in this tutorial.





Clickable Dropdowns


The w3-dropdown-click class creates a clickable dropdown
element.


With this class, the dropdown is opened by JavaScript:





Link 1
Link 2
Link 3




Example



<div class="w3-dropdown-click">
  <button onclick="myFunction()" class="w3-button w3-black">Click Me!</button>
  <div id="Demo" class="w3-dropdown-content
w3-bar-block w3-border">
    <a href="#" class="w3-bar-item w3-button">Link 1</a>
    <a href="#" class="w3-bar-item w3-button">Link 2</a>
    <a href="#" class="w3-bar-item w3-button">Link 3</a>
  </div>
</div>

<script>
function myFunction() {
   
var x = document.getElementById("Demo");
    if (x.className.indexOf("w3-show")
== -1) { 
        x.className += " w3-show";
   
} else {
        x.className = x.className.replace(" w3-show", "");
    }
}
</script>


Try it Yourself »






Image Dropdowns



Move the mouse over the image:




Monterosso


Norway




Example



<div class="w3-dropdown-hover">
 
<img src="img_snowtops.jpg" alt="Norway" style="width:20%">
  <div
class="w3-dropdown-content" style="width:300px">
    <img src="img_snowtops.jpg"
alt="Norway" style="width:100%">
  </div>
</div>


Try it Yourself »






Card Dropdowns



Move the mouse over one of the cities below:



London

London

London is the capital city of England.


It is the most populous city in the United Kingdom, with a metropolitan area of over 9 million inhabitants.






Tokyo

Tokyo

Tokyo is the capital city of Japan.


13 million inhabitants.








Example



<div class="w3-dropdown-hover">London
  <div class="w3-dropdown-content
w3-card-4" style="width:250px">
    <img src="img_london.jpg"
alt="London" style="width:100%">
    <div
class="w3-container">
      <p>London is the
capital city of England.</p>
      <p>It is the
most populous city in the UK.</p>
    </div>
  </div>
</div>


Try it Yourself »





Animated Dropdown


Use any of the w3-animate-classes to fade, zoom or slide in the dropdown content:





Link 1
Link 2
Link 3




Example



<div class="w3-dropdown-click">
  <button onclick="myFunction()"
class="w3-button">Click Me</button>
  <div id="Demo"
class="w3-dropdown-content w3-bar-block w3-animate-zoom">
    <a href="#"
class="w3-bar-item w3-button">Link
1</a>
    <a href="#" class="w3-bar-item w3-button">Link 2</a>
    <a href="#"
class="w3-bar-item w3-button">Link 3</a>
  </div>
</div>


Try it Yourself »





Right-aligned Dropdown


Use the w3-right class to float the dropdown to the right. Use CSS
to position the dropdown content (right:0 will make the dropdown menu go from
right to left instead of left to right):






Link 1
Link 2
Link 3





Example



<div class="w3-dropdown-hover w3-right">
  <button class="w3-button">Dropdown</button>
  <div class="w3-dropdown-content
w3-bar-block w3-border" style="right:0">
    <a href="#" class="w3-bar-item w3-button">Link 1</a>
    <a href="#" class="w3-bar-item w3-button">Link 2</a>
    <a href="#" class="w3-bar-item w3-button">Link 3</a>
  </div>
</div>


Try it Yourself »






❮ Previous
Next ❯


/* When the user clicks on the button,
toggle between hiding and showing the dropdown content */
function myFunction() {
var x = document.getElementById("myDropdown");
if (x.classList) {
x.classList.toggle("w3-show");
} else {
// Fallback for IE9 and earlier
if (x.className.indexOf("w3-show") == -1)
x.className = x.className + " w3-show";
else
x.className = x.className.replace("w3-show", "");
}
}

function myFunction2() {
var x = document.getElementById("myDropdown2");
if (x.classList) {
x.classList.toggle("w3-show");
} else {
// Fallback for IE9 and earlier
if (x.className.indexOf("w3-show") == -1)
x.className = x.className + " w3-show";
else
x.className = x.className.replace("w3-show", "");
}
}

Popular posts from this blog

Colors HSL

W3.CSS Downloads

W3.CSS Tables