【发布时间】:2015-07-13 18:32:29
【问题描述】:
我需要 CSS 方面的帮助。我正在尝试使其在另一个 div 被单击作为过渡时将 div 的不透明度设置为 1。我只能使用 CSS,所以我试图找出如何使用活动类来执行此操作或任何其他方法。
代码:
#reveal {
color: #cbd3db;
font-family: "Adobe Caslon Pro", "Hoefler Text", Georgia, Garamond, Times, serif;
}
#ss {
color: #cbd3db;
font-family: "Adobe Caslon Pro", "Hoefler Text", Georgia, Garamond, Times, serif;
opacity: 1;
transition: all 4s;
}
<div id="reveal"><b>Requirements:</b>
<br>
<li>Shinigami present approximately 130 years from the present.
<li>Someone with some understanding of Quincy lore.
<li>People willing to fight a Quincy stronger than them.
<li>Shinigami who will remember this.
<li>Willingness to potentially expand upon this in the present.</li>
<br>
<b>Optional Additions</b>
<li>Hollow/Arrancar present approximately 130 years from the present.
<li>Anything at someone else may want to do using this for themselves.</li>
<br>
<i>Click for a brief synopsis.</i>
</div>
<br>
<br>
<br>
<div id="ss"><b>Synopsis:</b>
<br>
<br>Lena Heinrich, the embodiment of destruction. She is an immensely powerful being and an undeniably substantial threat to the balance of the living world and spiritual world. Her relentless annihilation of countless Hollows has been known to us for some
time. She is beyond reason and control at this point and must be eliminated to protect both worlds.
<br>
<br>Already Shinigami have fallen to her, she silences all that might dissuade her from her path of destruction. No longer can we ignore such a dire threat. We must establish a sortie with a number of powerful Shinigami to bring her down; she is not to
be underestimated, few Quincy have existed as powerful as her…
<br>
<br>Interested? Post below and I'll sort things out ;)
</div>
【问题讨论】:
标签: css css-transitions opacity pseudo-element