Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 2 years ago.
Improve this question
I have some issue with js or css.
Imagine we have 2 <span>s:
first - display:block, 2d - display none.
Onclick I need to show second one with animation slide-up.
Example:
document.getElementById('second').style.display = "-webkit-flex";
<span id="first" style="display:block">Auto</span>
<span id="second" style="animation: slide-up 1s ease;display:none">Airlines</span>
But animation is not appearing.
Only some CSS properties can be animated. display is not one of them.
Typically a "slide-up" animation (and you failed to include the definition of yours in your mcve) would animate the top property to move it into position.
Related
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 9 months ago.
Improve this question
I am developing web interface using HTML,CSS,JavaScript to play videos. On video playing div I have added another div using css z-index, to add play, pause buttons.
When I scroll the web page only video playing div is going up & down.How can I scroll both divs together.
kindly check if;
YOU didn't position:fixed in your CSS file
you did end all tags properly
Lastly, make sure the below z-index is given a lower number value.
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 1 year ago.
Improve this question
I'm making a really simple animation on a webpage. When the images overlap, the wrong ones are on top and the one I want on top is on the bottom. How can I fix this?
You can use CSS z-index Property
The z-index property specifies the stack order of an element.
An element with greater stack order is always in front of an element with a lower stack order.
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 5 years ago.
Improve this question
I have a project which renders multiple spinners and I've noticed that on reload only the last spinner is spinning. All the elements use :before.
I am aware that this is fixable by removing the :before in the css but I would like to know why this was the case.
Here's the example, you'll see all the spinners load then when you click on the "reload" text only the last spinner will spin.
Link to JSFiddle
The issue is you're setting before on .spinner class.
Set it on .spinner-container class and it will work as expected
Check this fiddle
Reach doesn't work in stack snippet. That's why I added a js fiddle
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 7 years ago.
Improve this question
I want to make the div slidestatic really static. I don't want it to shrink with the other divs. When I make the z-index of the parent -1, I don't have access to the <a href>s anymore, I can't click them. Thanks
Demo
Apply The position property to the slidestatic div. Change slidestatic div to direct child of slider div and add style "position:fixed to slidestatic div.
#slidestatic {
position:fixed;
top:10px;
}
Here is the FIDDLE
Hope this will fix your problem.
An alternative way is to add animation to the description div.
Here is the FIDDLE
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 7 years ago.
Improve this question
I am unable to see the elements that i am dragging once they leave a parent element that has absolute positioning. (Cant see the draggable helper as it moves)
Check out the example at http://nairobi.io/tests/jquery-ui-draggable
Kindly help me fix this problem.
You've misspelled "appendTo" as "apendTo" in your draggable initialiser (line 138), which means the helper is not being added to the right place.