Можно ли добавить индекс z в drawImage в javaScript ??? если добавить, можете ли вы объяснить?Как добавить индекс z в canvas.drawImage в js (я хочу отображать myImages всегда вверху)
function drawCanvas(time, myClass, myImages, context) {
drawImageWithCenter(myClass.bgImage, 512, 384);
var indx;
for (indx=0; indx < 5; indx++){
if(a[indx] == false){
drawImageWithCenter(
myClass.rightImage, tickX[indx], tickY[indx]);
}
}
for (indx=0; indx < myImages.length; indx++)
{
if(myImages[indx].isVisible){
drawImageWithCenter(myImages[indx].img[myImages[indx].currentFrame],myImages[indx].imgX,myImages[indx].imgY);
}
}
if(spoted==5 && B_end==true){
drawImageWithCenter(myClass.endPopup, 512, 384);
}
context.font = "30px Gill Sans";
drawCenterText("Spot the 5 differences in the pictures on the right...", 150, 80);
drawCenterText("Score: " + spoted, 30, 50);
}
Я согласен с @Mako, что внутри холста нет zIndex «внутри». Но есть «на» холст. См. Мой ответ. – RobM