我正在嘗試使用css3動畫移動一段文本。 Safari和iPad UIWebview的動畫效果不太理想。這裏是code。有沒有辦法讓它更順暢?當我爲圖像製作動畫時更加明顯。我使用了不同的計時功能,但仍然不順暢。簡單的css3動畫在Safari和iPad上並不流暢UIWebView
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<style type="text/css">
div
{
width:100px;
height:100px;
position:relative;
-webkit-animation-name: mymove;
-webkit-animation-duration: 2s;
-webkit-animation-fill-mode:forwards;
-webkit-animation-iteration-count: 1;
-webkit-animation-timing-function: linear;
}
@-webkit-keyframes mymove
{
from {left:0px;}
to {left:200px;}
}
</style>
</head>
<body>
<div>Move this block</div>
</body>
</html>