<html> <head>
<style type="text/css">
.swing {animation: swing ease-in-out 1s infinite alternate; width:30%;
transform-origin: center -20px; box-shadow: 5px 5px 10px rgba(0,0,0,0.5);}
.swing img {border: 5px solid #f8f8f8; width:100%; display: block;
text-align:left;}
@keyframes swing {
0% { transform: rotate(3deg); }
100% { transform: rotate(-3deg); } }
</style>
</head>
<body>
<center><figure class="swing"><img src="../Bilder/Life.jpg" width="200"
/></figure></center>
</body>
</html> |