0
我有下面的代碼:改造規模CSS 3 SVG
http://codepen.io/anon/pen/xGRzVq
<style>
#pulse {animation : pulse 1s infinite 1s, hideme 15s;}
@keyframes pulse {0%{transform: scale(0,0);opacity: 0.5} 100%{transform: scale(1,1);opacity: 1.5}
@keyframes hideme {100%{display: none}}
</style>
不過貌似"transform: scale(0,0)"
不IE 11
工作,我可以用另一個轉換爲改變圓的大小?
Thx提前。
只要它與不透明度一起使用。看起來很足夠 –