我試圖讓孩子的圖像幻燈片左側,消失就像父母。如果您現在運行剪切,則圖像縮放而不是向左滑動。如何讓孩子過渡到左側而不是縮放?
如何防止圖像縮放?並使圖像向左滑動並消失,就像父母一樣?
轉換將由媒體查詢觸發。
這是我的代碼。
.parent {
height: 130px;
width: 180px;
background-color: #fff;
border-bottom-right-radius: 10px;
border: 1px solid #000000;
text-align: center;
float: left;
position: fixed;
z-index: 1;
transition: ease all 0.3s;
}
.child {
width: 100%;
height: 100%;
background-size: contain;
text-indent: -9999px;
display: block;
background-image: url(https://static.pexels.com/photos/34490/keyboard-computer-keys-white.jpg);
background-repeat: no-repeat;
background-position: center center;
}
@media screen and (max-width: 655px){
.parent {
visibility: hidden;
width: 1px;
}
}
<div class="parent">
<span class="child">
</span>
</div>
你有什麼轉變? – Afsar
我只想轉換父項 – Dave
此轉換是否由媒體查詢觸發? – zer00ne