下面给出的是alistapart 文章的片段。但是“焦点”(点击)的转换似乎不适用于 Chrome(25.0.1364.172)和 Firefox(19.0.2)。但适用于 Opera(12.14)(在 Linux 上)。
知道为什么吗?
<!DOCTYPE HTML>
<html>
<head>
<style type="text/css">
a.foo {
padding: 5px 10px;
background: #9c3;
-webkit-transition: background 0.3s ease;
-moz-transition: background 0.3s ease;
-o-transition: background 0.3s ease;
transition: background 0.3s ease;
}
a.foo:hover,
a.foo:focus {
background: #690;
}
</style>
</head>
<body>
<a href="#" class="foo">Transition me!
</body>
</html>