Newer
Older
2020-natsuki / a.css
@Wakayama Natsuki Wakayama Natsuki on 14 Jul 2020 319 bytes Update a.css
<style type="text/css">

h1 {
  animation-duration: 3s;  
  animation-name: slidein;  
}

@keyframes slidein {
  from {
    margin-left: 100%;
    width: 300%;
    color: blue;
    background-color: #aaccff;
  }
  to {
    margin-left: 0%;
    width: 100%;
    color: black;
    background-color: white;
  }
}
</style>