gpt4 book ai didi

javascript - 如何使用angular1使图像在点击时出现在正面/背面?

转载 作者:行者123 更新时间:2023-11-29 19:02:39 26 4
gpt4 key购买 nike

我想以这样的方式实现,当我们单击图像时,所选图像应出现在前面,其余图像应隐藏在所选图像的后面。

我有使用 jquery 实现的类似功能的代码引用。

Click on image to move to front?

请告诉我如何使用 Angular 或使用普通 javascript 完成此操作?

最佳答案

使用纯 javascript:

    let images = document.getElementsByClassName('myclass');
Array.prototype.forEach.call(images, (img) => img.addEventListener('click', function() {
Array.prototype.forEach.call(images, (img) => img.style.zIndex = 0);

this.style.zIndex = 100;
}));

关于javascript - 如何使用angular1使图像在点击时出现在正面/背面?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45732315/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com