【发布时间】:2015-09-16 19:59:20
【问题描述】:
我有想要添加 CSS3 动画的标题
我想变身
标题
到
[标题]
我希望方括号从单词的中心动画到它的边界。
类似..
标题[]标题
到
[标题]
带动画(当然我使用:before :after 将括号与opacity 添加到0 到1)
我的p风格:
p:before {
content: "[";
position: absolute;
left: 50%; /*to add the bracket to the center of the word*/
opacity: 0;
transition: all 0.7s ease;
}
谢谢!
【问题讨论】:
-
你的问题是什么?代码有什么问题?
-
@FabrizioCalderan 这是起始样式,我仍然缺少翻译类,这种样式将方括号添加到单词的中心,我想翻译左边的括号词
-
为什么在定位时需要翻译它。为什么不只是转换/动画位置值?
标签: css animation translate-animation