Files
intecsync/uebung2/strasse.html
2019-05-09 09:36:05 +02:00

54 lines
1.4 KiB
HTML

<!DOCTYPE html>
<head>
<title>Straße</title>
<style>
html {
width: 100%;
height: 100%;
}
body {
background-image: url("/~zxmpy88/uebung2/assets3/background.svg");
background-size: auto 100%;
background-repeat: repeat-x;
overflow: hidden;
}
@keyframes fahren {
0% {
left: -40%;
}
100% {
left: 100%;
}
}
.delay {
animation-delay: 2s;
animation-direction: reverse;
}
.lefttoright {
width: 40%
height: 40%;
position: absolute;
bottom: -5%;
animation: fahren 10s linear infinite;
transform: scaleX(-1);
z-index: 1; //weiter vorne/hinten
}
</style>
</head>
<body>
<img class="lefttoright" src="/~zxmpy88/uebung2/assets3/car1.svg">
<img class="lefttoright delay" src="/~zxmpy88/uebung2/assets3/car1.svg">
</body>
</html>