我有一个包含在 if 中的组件,如下所示:
(if @(subscribe [:some-condition])
[:div.show-me "Show me"]
)
我想在 show-me div 显示后立即应用动画,即当条件为真时。现在,我知道如何使用选择器(如 :hover 和 :active)在 css 中应用转换,例如:
.show-me {
transition: all 1s ease-in-out;
}
.show-me:hover {
transform: scale (1.1em);
}
悬停时将缩放 div。
但是,例如,如何在 div 显示后立即对其进行缩放?