点击后如何停止闪烁链接? 我想要类似的东西,
<!DOCTYPE html>
<html>
<head>
<style>
a:link {text-decoration: blink;}
a:visited {text-decoration: none;}
</style>
</head>
<body>
<a target="_blank" href="www.google.com">Click here!</a>
</body>
</html>
但它并没有停止眨眼效果。
答案 0 :(得分:2)
也许你应该使用Javascript或CSS3动画。 text-decoration: blink;
已弃用,不应使用。请注意IE, Chrome, Opera and Safari don't support this attribute。