今回はCSSを使ってドットエフェクトを作る方法を紹介します。 CSSでドットエフェクトを作る際の注意点を紹介します。
コードは次のとおりです:
<!doctype html> <html> <head> <meta charset="utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>进行中...</title> <style> dot { display:inline-block; width:3ch; text-indent:-1ch; vertical-align:bottom; overflow:hidden; animation:dot 3s infinite step-start both; } @keyframes dot { 33% { text-indent: 0; } 66% { text-indent: -2ch; } } </style> </head> <body> <a href="javascript:">进行中<dot>...</dot></a> </body> </html>
この記事の事例を読んだ後は、この方法を習得したと思います。さらに興味深い情報については、php 中国語 Web サイトの他の関連記事に注目してください。
推奨読書:
Css3 Transition スムーズトランジションメニューバーの実装
垂直方向の中央揃えを実現するためによく使用される 4 つの CSS メソッド
以上がドット効果を作成するCSSの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。