繁体   English   中英

使用 css 删除放大缩小效果

[英]Remove zoom in zoom out effect using css

我想从移动视图中删除放大缩小效果但没有得到解决方案,

.whats_next_float .lets_go_wrapper img.logo_img {
    animation: zoominout 3s infinite;
}

animation: zoominout 3s infinite;
    animation-duration: 3s;
    animation-timing-function: ease;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-fill-mode: none;
    animation-play-state: running;
    animation-name: zoominout;
}

任何人有想法然后让我知道。

您可以将 CSS animation属性设置为无。

@media only screen and (max-width: 600px) {
  .whats_next_float .lets_go_wrapper img.logo_img {
    -webkit-animation: none;
    -moz-animation: none;
    -o-animation: none;
    -ms-animation: none;
    animation: none;
  }
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM