Questions tagged [slidedown]

An effect of showing element with a sliding motion.

Usually refers to jQuery/JavaScript animated revealing of element with a sliding motion.

slideDown() in jQuery docs.

Some examples are:

 $('#element').slideDown('slow', function() {
   // Animation complete.
 });
609 questions
0
votes
1 answer

jquery slide down many images in sequence one by one after page load

I am trying to display images with sliding effects(top to bottom of the page) one by one in to on page load. After going through so many sites I did not get any plug-in related to this functionality. Here is the example link of what i exactly want…
yatinsmile
  • 39
  • 5
0
votes
2 answers

jQuery sub-navigation alternating visibility

I am in the process of developing a site in which some links in the primary navigation have individual sub-menus - nothing unusual. But, I am attempting to control the visibility of the sub-menus. When the cursor hovers over a link with a sub-menu,…
sisko
  • 9,604
  • 20
  • 67
  • 139
0
votes
1 answer

Bug in jquery toggle causes horrible artifacts

Check out the example to see what I mean: http://jsfiddle.net/3PVsy/ Any ways to fix this?
aeroshock
  • 57
  • 3
  • 10
-1
votes
1 answer

Having issue with slidedown function

Problem Can't get prependTo() and slideDown() functions work together. Short Please take a look at the code. http://jsfiddle.net/tt13/5CxPr/53/ Press "new" to see what happens Am I missing something? Detailed Here is JS code function newrow(elem){ …
Tural Ali
  • 22,202
  • 18
  • 80
  • 129
-1
votes
2 answers

Slide-down view on iPhone

I want to create a slide-down animation, like in the image in the link. When I press on "Previous", I want it to slide down to the center of the screen. I am not really sure how to implement that. Any suggestion would be really…
Cosmin
  • 2,840
  • 5
  • 32
  • 50
-1
votes
2 answers

How to slide down and up text with jquery one by one?

I have 2 links: category1 and category2. I want to slide down text when mouse click over appropriate link. For example if someone clicks over category1 I want to slide down category1 content. And if soneone clicks over category2 I want to slide…
Someone
  • 736
  • 2
  • 12
  • 29
-1
votes
2 answers

slide up and slide down

I have one list with groups name.
and sliding containers
    Lorem ipsum ..
devsoft
  • 259
  • 1
  • 3
  • 11
-1
votes
2 answers

jquery slideIn on element is not working

I cant seem to get the jQuery slide in method working. Please have a look at my code below. The other jquery methods are working fine. HTML:

WHAT OUR CUSTOMERS SAY...

JQUERY:…
CoderAz
  • 89
  • 4
  • 12
-1
votes
1 answer

How to add a lower level submenu at a specific position in a context menu?

Menu example url: https://tympanus.net/codrops/2010/07/16/slide-down-box-menu/ Snapshot:  
-1
votes
1 answer

jQuery slideDown() produces no effect

I'm trying to use jQuery to create a recursion demo, but so far I haven't gotten any effects to work. I want div1 to slide down when clicked. The div is set to position:relative; and display:inline-block but it still doesn't slide down when clicked.…
Reggie
  • 413
  • 2
  • 9
  • 19
-1
votes
2 answers

jQuery trying to stop the new hover running till the previous is finished

Currently my jQuery code below opens and closes a submenu when its parent is hovered. But my only problem is when I mouse over another top level item the opened submenu starts to close and the submenu for the item I am now hovered starts to slide…
ngplayground
  • 20,365
  • 36
  • 94
  • 173
-1
votes
1 answer

Jquery slideDown / Slide up menu

I ma trying to make a sliding menu. I want hovering on logo-container to slide it up and when animation is finished slide down menu. When the mouse will be out of logo-container menu will slide up and when animation will be finisded logo will slide…
Viktors
  • 935
  • 3
  • 13
  • 33
-1
votes
4 answers

Hover content of a hover()

I have a simple button which displays a list on hover. Working example I just need to hover the list content, like a dropdown menu. How do I add script to perform that function? HTML
  • Menu…
Jhonny
  • 164
  • 1
  • 9
-1
votes
1 answer

jQuery accordion slides up multiple times

I'm making a jquery accordion and I have some issues My jQuery searches for a ul inside a class and if it has a certain class it slides down, but it slides down as many times as the element ul exists in the whole nav Here is my jquery code so…
Wannes
  • 355
  • 4
  • 15
-1
votes
1 answer

jquery The codes after slideDown() don't execute

jquery code: $('#loading').slideDown('slow'); alert("go"); In my case, alert() function didn't call, which means that the codes after slideDown() don't execute. any ideas?
Samblg
  • 977
  • 2
  • 12
  • 15
1 2 3
40
41