利用CSS3簡單實現加載中效果

<template>
  <p class="demo">加載中</p>
</template>
.demo:after{
	content: "."
}
.demo:after {
  animation: dot 3s linear infinite;
}

@keyframes dot {
  0% {
    content: ".";
  }

  33% {
    content: "..";
  }

  66% {
    content: "...";
  }

  100% {
    content: "";
  }
}

效果圖



🔗 參考鏈接

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章