Been trying for hours, but can't seem to figure out why adjusting the z-index does not affect the circles in realtime.
Javascript/Jquery:
var greenCircle = "#greenCircle";
var blackCircle = "#blackCircle";
$(greenCircle).css("z-index", "5");
$(blackCircle).css("z-index", "4");
$(greenCircle).animate({ width: '200%', height: '100%', left: '-50%', top: 0}, lockTime);
Here is the HTML layout:
<img class = "clearCircle" id = "greenCircle" src = "Resources/Background/GreenCircle.png" alt = "Clear circle">
<img class = "clearCircle" id = "blackCircle" src = "Resources/Background/BlackCircle.png" alt = "Clear circle">
Inital CSS
.clearCircle {
position: absolute;
height: 0;
width: 0;
}
No matter what I have tried, the blackCircle is always in front, and the code is throwing no errors.
Thanks in advance for any help
Been trying for hours, but can't seem to figure out why adjusting the z-index does not affect the circles in realtime.
Javascript/Jquery:
var greenCircle = "#greenCircle";
var blackCircle = "#blackCircle";
$(greenCircle).css("z-index", "5");
$(blackCircle).css("z-index", "4");
$(greenCircle).animate({ width: '200%', height: '100%', left: '-50%', top: 0}, lockTime);
Here is the HTML layout:
<img class = "clearCircle" id = "greenCircle" src = "Resources/Background/GreenCircle.png" alt = "Clear circle">
<img class = "clearCircle" id = "blackCircle" src = "Resources/Background/BlackCircle.png" alt = "Clear circle">
Inital CSS
.clearCircle {
position: absolute;
height: 0;
width: 0;
}
No matter what I have tried, the blackCircle is always in front, and the code is throwing no errors.
Thanks in advance for any help
.clearCircle
position:relative
?
– StackSlave
Commented
Mar 25, 2015 at 23:23
greenCircle
always shows up in front of blackCircle
jsfiddle/kpumuecs
– dippas
Commented
Mar 25, 2015 at 23:31
Try this:
HTML - I added some coloured placeholder circles to help troubleshooting:
<img class="clearCircle" id="greenCircle" src="http://placehold.it/200x200/66ff66" alt="Clear circle">
<img class="clearCircle" id="blackCircle" src="http://placehold.it/200x200/000000" alt="Clear circle">
JavaScript - I wrapped everything in jQuery document.ready(). If you change the z-index of the black image from 10 to 30, you will see it in front of the green image.
$(function () {
var lockTime = 2000;
var greenCircle = "#greenCircle";
var blackCircle = "#blackCircle";
$(greenCircle).css("z-index", "20");
$(blackCircle).css("z-index", "10");
$(greenCircle).animate({
width: '200%',
height: '100%',
left: '-50%',
top: 0
}, lockTime);
});
CSS - Increased initial size so you can see the black image:
.clearCircle {
position:absolute;
height:50;
width:50;
}
Demo - You'll see that the images respect the z-index:
http://jsfiddle/BenjaminRay/57ttjr2z/
It isn't pletely clear to me what your trying to acplish but I think the "why" to your question basically boils down to browser stacking context for z-index and when z-index actually gets applied using your jquery script.
When you set an elements position but do not define the z-index value, then z-index is interpreted by the browser in terms of the order of the elements appearance in the DOM. Elements loaded last, will display above elements that preceded it.'
Here is an example of what I mean: https://jsfiddle/pmpg0zah/
Here is a detailed explanation of z-index and how it works: http://timkadlec./2008/01/detailed-look-at-stacking-in-css/
jQuery runs after the DOM is loaded so thats why you see the black circle appear on top initially and then go away once the green circle is updated.
If you want it to appear as if it is rendering in real time, then you need to reverse the img elements order like so:
<img class = "clearCircle" id = "blackCircle" src = "Resources/Background/BlackCircle.png" alt = "Clear circle">
<img class = "clearCircle" id = "greenCircle" src = "Resources/Background/GreenCircle.png" alt = "Clear circle">
Forked and updated your fiddle here: http://jsfiddle/uyyxcxkg/1/