B
B
Brain Storm2014-02-08 11:26:22
JavaScript
Brain Storm, 2014-02-08 11:26:22

How to implement a popup menu without jQuery?

Can you please tell me how to make a popup menu without jQuery?

Answer the question

In order to leave comments, you need to log in

4 answer(s)
Y
Yuri Lobanov, 2014-02-09
@EkLast

I advise you to do it like this:
well, adaptability is done through media queries, if you copy the template, then this is already done for you.
The sliding menu is the easiest way, in my opinion, to remove the class from this div:

.nav.hidden {
 height: 1px;
overflow: hidden;
}
.nav {
 height: auto;
}

By clicking on the button, you remove the hidden class from the block with the menu. For animation use css3 animation.

Y
Yuri Lobanov, 2014-02-08
@iiil

google "pure css menu" or "pure javascript menu"
ruseller.com/lessons.php?rub=2&id=941 - here, for example.

A
Andrew, 2014-02-08
@SkaN2412

getbootstrap.com/components/#dropdowns

E
Evgeny Vedenin, 2015-12-07
@jvedenin

In my question was about the menu leaving the left?

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question