<style>
#hintergrund {
width: 298px;
height: 298px;
background: url("http://www.mobirise-tutorials.com/PortfolioM4/assets/images/sea.jpg");
background-size: 100% 100%;
background-position: center left;
transition: all 2.5s;
animation: bewegeHintergrund 10s ease 1s infinite alternate;
}
div#vordergrund {
width: 300px;
height: 300px;
position: Absolute;
cursor: all-scroll;
background-image: url("http://www.mobirise-tutorials.com/PortfolioM4/assets/images/bullauge.png");
}
div#vordergrund:hover ~ #hintergrund {
background-size: 270% 270%;
}
@keyframes bewegeHintergrund {
100% {
background-position: center right;
}
}
</style>