58 lines
1.5 KiB
HTML
58 lines
1.5 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;
|
|
}
|
|
|
|
img {
|
|
width: 40%
|
|
height: 40%;
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
@keyframes fahren {
|
|
0% {
|
|
left: -40%;
|
|
}
|
|
|
|
100% {
|
|
left: 100%;
|
|
}
|
|
}
|
|
|
|
.delay {
|
|
animation-delay: 2s;
|
|
animation-direction: reverse;
|
|
}
|
|
|
|
|
|
.lefttoright {
|
|
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>
|