Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用我在这里找到的脚本
这是我的网站
无论出于何种原因,该图像似乎是不可见的,并且仅在我将图像翻转时才出现。有问题的图像是我投资组合中的左上角图像。我想要它做的是加载为灰度和翻转,是彩色的。
我唯一能想到的是这段代码可能将其设置为不可见。
.item img { opacity:0; }
你说的对。正因为如此。只需将其不透明度设置为 1 或从 CSS 中删除此类。
元素本身具有内联不透明度样式属性...删除 .item img 的 css 条目,它应该像您期望的那样工作。
我想我想通了。我将不透明度设置为 1。
.item img { opacity:1; }