我有一个盒子,盒子里有一张照片。我正在使用CSS3 object-fit属性填充图像。而且我也需要移动动画。我正在使用关键帧动画来移动图像。
这是我的HTML
<div class="item">
<img src="https://placeimg.com/640/480/any">
</div>
<br>
<button>
animation
</button>
我的CSS在这里
.item {
width: 200px;
height: 200px;
border: 1px solid #000;
}
.item img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: 0px 0;
}
.item.active img {
-webkit-animation: objectMove 2s;
animation: objectMove 2s;
/* object-position: 100px 0; */
}
@-webkit-keyframes objectMove {
from {
object-position: 0 0;
}
to {
object-position: 100px 0;
}
}
@keyframes objectMove {
from {
object-position: 0 0;
}
to {
object-position: 100px 0;
}
}
这是我的JavaScript,
$('button').click(function(){ $('.item').addClass('active');
setTimeout(function(){ $('.item').removeClass('active'); }, 2000); })
在chrome,mozilla和edge中可以正常工作。但是不能在野生动物园工作。
Here is the jsfiddle of the same.
有人可以帮我修复它吗?
答案 0 :(得分:1)
object-position
和keyframes
,因此我使用的是object-position
而不是transform:translateX;
$('button').click(function() {
$('.item').addClass('active');
setTimeout(function() {
$('.item').removeClass('active');
}, 2000);
})
.item {
width: 200px;
height: 200px;
border: 1px solid #000;
overflow: hidden;
}
.item img {
width: 100%;
height: 100%;
object-fit: cover;
transform:translateX(0);
}
.item.active img {
-webkit-animation: objectMove 2s;
animation: objectMove 2s;
}
@-webkit-keyframes objectMove {
from {
-webkit-transform:translateX(0);
}
to {
-webkit-transform:translateX(100px);
}
}
@keyframes objectMove {
from {
transform:translateX(0);
}
to {
transform:translateX(100px);
}
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<div class="item">
<img src="https://placeimg.com/640/480/any">
</div>
<br>
<button>
animation
</button>