为什么CSS无法在移动设备上运行?

问题描述 投票:1回答:2

我想将下面的图像旋转到360度以下css应用于该图像:

<img src="" alt="" />

CSS:

.image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    margin:-60px 0 0 -60px;
    -webkit-animation:spin 4s linear infinite;
    -moz-animation:spin 4s linear infinite;
    animation:spin 4s linear infinite;
}
@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }

它在桌面上运行良好,但在移动设备上却没有?如果我做错了什么?

html css html5
2个回答
1
投票

这适用于移动设备和桌面设备。

.loader {
  position: absolute;
  width: 120px;
  height: 120px;
  left: 0; right: 0;
  top: 0; bottom: 0;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  overflow: hidden;
  -webkit-animation: spin 4s linear infinite;
  animation: spin 4s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

0
投票

您的旋转代码可能无法正常工作,因为您没有正确编码。 @keyframes动画中存在一些问题。

SEE THE EXAMPLE

© www.soinside.com 2019 - 2024. All rights reserved.