CSS 转换不起作用?

发布于 2024-11-07 10:34:28 字数 388 浏览 0 评论 0原文

由于某种原因,我似乎无法让 css 转换正常工作。我确信这是一个非常简单的错误。但我已经把头撞在墙上一个小时了。我在 Windows 7 64 位上使用 mozilla firefox 4.0.1。

<style>
a:link {
 transition: color 1s ease-in-out;
 color: #fff;
 text-decoration: none;
 text-shadow: 1px 1px #000;
}

a:hover {
 color: #0072bc;
 text-decoration: none;
 text-shadow: 1px 1px #000;
}
</style>
<a href="#">test</a>

I cannot seem to get css transitions to work for some reason. I am sure this is a very simple mistake. But I have been hitting my head against the wall for an hour now. I am using mozilla firefox 4.0.1 on windows 7 64bit.

<style>
a:link {
 transition: color 1s ease-in-out;
 color: #fff;
 text-decoration: none;
 text-shadow: 1px 1px #000;
}

a:hover {
 color: #0072bc;
 text-decoration: none;
 text-shadow: 1px 1px #000;
}
</style>
<a href="#">test</a>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

温柔戏命师 2024-11-14 10:34:28

css 转换是实验性的,但在某些引擎中实现了。
您需要使用特定属性:

-moz-transition /* for gecko based like firefox*/
-webkit-transition /* for  chrome safari ... */
-o-transition /* for opera*/

css transition is experimental, but implemented in some engines.
You need to use the specific properties :

-moz-transition /* for gecko based like firefox*/
-webkit-transition /* for  chrome safari ... */
-o-transition /* for opera*/
岁月如刀 2024-11-14 10:34:28

您需要使用 -moz- 前缀,因为它尚未标准化。所以:

-moz-transition: color 1s ease-in-out;

You need to use the -moz- prefix, as it isn't standardised yet. So:

-moz-transition: color 1s ease-in-out;
小耗子 2024-11-14 10:34:28

这也可以使用 jquery / jquery ui 来完成,所以我可以在所有浏览器中工作 =)
http://docs.jquery.com/UI/Effects/ClassTransitions

this can be also done with jquery / jquery ui so i got working in all browsers here =)
http://docs.jquery.com/UI/Effects/ClassTransitions

念三年u 2024-11-14 10:34:28

您应该研究一下用于 CSS 创作的 SASS 框架。您不必担心实验依赖性,因为框架会为您处理所有这些事情。

You should look into the SASS framework for CSS authoring. You will not have to worry about experimental dependencies as the framework takes care of all that for you.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文