伪元素后的CSS(转换) - 如何转换在悬停时显示的内容

时间:2013-10-25 00:56:34

标签: css css-transitions

<!DOCTYPE html>
<html>
<head>
<style> 

div
{
transition:after 3s;
-webkit-transition:after 3s;
}

div:hover:after
{
content:"- positive!";
}
</style>
</head>
<body>

<div>Test</div>

</body>
</html>

我上面有这个示例代码。我正在尝试使用“过渡”这样的文字:' - 正面!'滑动/显示需要3秒钟。但它不起作用..如何解决?

1 个答案:

答案 0 :(得分:42)

after不是transition的有效值。

而是将transition作为:after选择器的属性。

<强> HTML

<div>Test</div>

<强> CSS

div:after {
    content:" - positive!";
    position: relative;
    opacity: 0;
    top: -20px;
    -webkit-transition: all 3s;
    transition: all 3s;
}
div:hover:after {
    opacity: 1;
    top: 0px;
}

<强> Demo

您还可以在悬停状态和悬停状态下进行不同的转换。这允许我们延迟显示伪元素但没有延迟来隐藏它。

<强> CSS

div:after {
    content:" - positive!";
    position: relative;
    opacity: 0;
    top: -20px;
    -webkit-transition: all 250ms;
    transition: all 250ms;
}
div:hover:after {
    opacity: 1;
    top: 0px;
    -webkit-transition: all 3s;
    transition: all 3s;
}

<强> Demo

以下是支持伪元素转换的浏览器列表: http://css-tricks.com/transitions-and-animations-on-css-generated-content/