我在通过 Dart 应用z-index时遇到问题。什么是正确的方法来做到这一点

var carousel = query(".carousel");
  var classList = [];
  carousel.children.forEach(
      (childElement) => childElement.classes.forEach(
         (className) => classList.add(className)
          ));
  for (var i = 0; i < classList.length; i++) {
    query(classList[i]).style.zIndex+=1; //Need to increment z-index value for
                                           the child divs incrementally
  }

最佳答案

zIndex是一个字符串,因此您不能直接对其进行递增。

您可以尝试以下方法:

var elem = query(".${classList[i]}");
var newIndex = int.parse(elem.style.zIndex) + 1;
elem.style.zIndex = "${newIndex}";

关于z-index - 我们如何使用Dart语言应用CSS样式?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/18316127/

10-12 01:58