<p class="cloud-text cloud-title">Moving Cloud Text</p>
<p class="cloud-text attribute">Photo by <a href="https://unsplash.com/photos/Xk0uzYL3lyY?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText">Setu Anand</a> on <a href="https://unsplash.com/search/photos/coal?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText">Unsplash</a></p>
@import url('https://fonts.googleapis.com/css?family=Coiny');
body {
background: #ffffff;
}
.cloud-text {
font-family: 'Coiny', cursive;
background-clip: text;
text-fill-color: transparent;
background-image: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/769286/clouds.jpg);
background-size: auto;
background-attachment: unset;
background-position: 0%;
width: 80%;
margin: 10%;
font-size: 134px;
animation: clouds-moving infinite 220s;
animation-fill-mode: forwards;
animation-play-state: running;
animation-timing-function: linear;
text-align: center;
}
@keyframes clouds-moving {
0% {
background-position: 0%;
}
50% {
background-position: 100%;
}
100% {
background-position: 0%;
}
}
.attribute {
position: relative;
font-size: 26px;
text-align: center;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.