【发布时间】:2019-05-15 22:47:11
【问题描述】:
编译时抛出 Sass 错误:
@keyframes flipInX
from
transform: perspective(400px) rotate3d(1, 0, 0, 90deg)
animation-timing-function: ease-in
opacity: 0
40%
transform: perspective(400px) rotate3d(1, 0, 0, -20deg)
animation-timing-function: ease-in
60%
opacity: 1
transform: perspective(400px) rotate3d(1, 0, 0, 10deg)
80%
transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
to
transform: perspective(400px)
错误指向这一行:
...
80%
变换:透视图(400px) rotate3d(1, 0, 0, -5deg)
to
...
此错误过去在不同的地方抛出,并在切换行或重新键入选项卡和/或新行键入后消失。这似乎是一个错误,这很烦人。我该如何解决这个问题?
附:如果有帮助的话,我正在使用 Sublime Text 3...
【问题讨论】:
标签: css sass compilation