.image-slides {display: flex;max-width: 100%;width: 400px;height: 400px;}
.image-slides .image-slide-block {width: 100%;transition-duration: 0.6s;}
.image-slides .image-slide-block img {width: 100%;height: 100%;object-fit: cover;pointer-events: none;}
const fullImage = (event, action) => {
var otherTarget = document.querySelectorAll(".image-slide-block")
if(action == 1){
for(var i = 0; i < otherTarget.length; i++){
otherTarget[i].style.width = '20px'
}
event.target.style.width = '100%'
}else{
for(var i = 0; i < otherTarget.length; i++){
otherTarget[i].style.width = '100%'
}
}
}