离子应用程序中的Css动画无法在iOS模拟器中运行

时间:2016-12-06 04:21:27

标签: html ios css ionic-framework webkit

我的应用中有一个选框。它适用于chrome,但是当我在iOS模拟器中启动应用程序时,动画要慢得多,并且不会运行。

Ticker文本从右到左以chrome运行并重复。

在iOS模拟器中,它太慢,文本从右侧移动约30px,然后完全停止并重新开始。

我的错误是什么?

这是我的CSS:

@-webkit-keyframes ticker {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.ticker-wrap {
  position: fixed;
  top: 0;
  width: 100%;
  overflow: hidden;
  height: 4rem;
  background-color: rgba(0, 0, 0, 0.9);
  padding-left: 100%;
}

.ticker {
  display: inline-block;
  height: 4rem;
  line-height: 4rem;
  white-space: nowrap;
  font-family: "Teko", sans-serif;
  padding-right: 100%;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-name: ticker;
  animation-name: ticker;
  -webkit-animation-duration: 20s;
  animation-duration: 20s;
}
.ticker__item {
  display: inline-block;
  padding: 0 2rem;
  font-size: 2rem;
  color: white;
}

HTML:

  <div class="ticker-wrap">
      <div class="ticker">
        <div class="ticker__item">{{lt}}</div>
        <div class="ticker__item">{{lt}}</div>
      </div>
  </div>

0 个答案:

没有答案