【发布时间】:2015-03-01 00:10:50
【问题描述】:
使用 css 转换时出现问题,请看这里:
使用样式:
.hexagon-in2:hover .polygon{
transform: rotate(30deg);
bottom: 0px;
}
.hexagon-in2 .polygon{
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
transition: all 0.3s ease;
}
在 FF 和 Chrome 上 - 悬停效果相同,我没有应用任何模糊效果,但在悬停时你可以看到它。有什么解决方法的建议吗?
【问题讨论】:
标签: css css-transitions