收藏
回答

用css3 animation切换背景图,真机上过几秒钟,图片为什么会消失不显示?

.center_box {
  height666rpx;
  text-align: center;
  padding-top63rpx;
  padding-left16rpx;
  background-image: url(https:/***.com/waikuangA.png');
  background-repeat: no-repeat;
  background-size100% 100%;
  box-sizing: border-box;
  animation:changeImg .5s infinite;
  -webkit-animation:changeImg .5s infinite;
}
@keyframes changeImg {
  from {
    background-image: url('https:/***.com/waikuangA.png');
  }


  to {
    background-image: url('https://***.com/waikuangB.png');
  }
}
回答关注问题邀请回答
收藏

3 个回答

登录 后发表内容
问题标签