具有html
带有多个哈希链接(例如href="#login"
)的代码和使用伪选择器:target
进行动画的 css,例如
#login:target ~ #wrapper #console {
-webkit-animation-timing-function: ease-out;
-moz-animation-timing-function: ease-out;
-o-animation-timing-function: ease-out;
-ms-animation-timing-function: ease-out;
animation-timing-function: ease-out;
-webkit-animation-name: scaleOut;
-moz-animation-name: scaleOut;
-o-animation-name: scaleOut;
-ms-animation-name: scaleOut;
animation-name: scaleOut;
}
我想根据触发事件的“来源”添加条件行为功能。
让我们说html
代码
<a class="hidden" id="login"></a>
<div id="wrapper">
<div id="console" class="animate">
...
某处还有两个链接
<a id="link_1" href="#login">
和
<a id="link_2" href="#login">
都指向#login
. 是否可以修改css
为每个链接具有不同的行为?就我而言,是否可以通过纯html
和css
为两个链接制作不同类型的动画?