国产chinesehdxxxx野外,国产av无码专区亚洲av琪琪,播放男人添女人下边视频,成人国产精品一区二区免费看,chinese丰满人妻videos

App下載
首頁(yè)htmlwebkit_animationCSS Property Value - 如何webkit-animation: 1s blink step-end infinite;

CSS Property Value - 如何webkit-animation: 1s blink step-end infinite;

我們想知道如何webkit-animation: 1s blink step-end infinite;

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
@-webkit-keyframes blink {from , to { border-color:transparent}
50%{border-color:black}
}
@-moz-keyframes blink {from , to { border-color:transparent}
50%{border-color:black}}
body {
  width: 100px;
  height: 100px;
  border-left: 10px solid black;
  -webkit-animation: 1s blink step-end infinite;
  -moz-animation: 1s blink step-end infinite;
}
</style>
</head>
<body>
</body>
</html>