<div id="img">
<img src="img/1.png" alt="photo" id="test">
</div>
<button type="button" id ="work"">do</button>
work.onclick = function(){
document.getElementById('test').classList.toggle('active');
}
#test.active{
transform: scale(2);
}