簡體   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