SVG ViewBox

Viewbox cool stuff

by josekerekes

HTML

<svg 
    width="100" height="100">

  <rect width="50" height="50" x="50" y="50" fill="#008d46" />

</svg>

CSS

svg:hover {
  transition: all 0.5s
  
}

JavaScript

document.querySelector('svg').addEventListener('mouseover',function() {
	document.querySelector('svg').setAttribute('viewBox', "50 50 50 50");
})