Bạn có thể thử sử dụng animation-delay property
thời gian và dấu chấm lửng cho mỗi ký tự. Trong trường hợp này, tôi đã đặt từng ký tự dấu chấm lửng trong một <span class>
để tôi có thể tạo hiệu ứng riêng cho chúng.
Tôi đã tạo một bản demo , nó không hoàn hảo, nhưng nó cho thấy ít nhất những gì tôi muốn nói :)
Mã từ ví dụ của tôi:
HTML
Loading<span class="one">.</span><span class="two">.</span><span class="three">.</span>
CSS
.one {
opacity: 0;
-webkit-animation: dot 1.3s infinite;
-webkit-animation-delay: 0.0s;
animation: dot 1.3s infinite;
animation-delay: 0.0s;
}
.two {
opacity: 0;
-webkit-animation: dot 1.3s infinite;
-webkit-animation-delay: 0.2s;
animation: dot 1.3s infinite;
animation-delay: 0.2s;
}
.three {
opacity: 0;
-webkit-animation: dot 1.3s infinite;
-webkit-animation-delay: 0.3s;
animation: dot 1.3s infinite;
animation-delay: 0.3s;
}
@-webkit-keyframes dot {
0% {
opacity: 0;
}
50% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes dot {
0% {
opacity: 0;
}
50% {
opacity: 0;
}
100% {
opacity: 1;
}
}