css3 でフォント リフレクションを実装する方法: まず HTML サンプル ファイルを作成し、次にテキストを定義し、指定されたテキストに「box-reflect」属性を追加してフォント リフレクションを実現します。
このチュートリアルの動作環境: Windows7 システム、CSS3 バージョンこの方法は、すべてのブランドのコンピューターに適しています。
推奨: 「css ビデオ チュートリアル 」
フォント リフレクションを実現する css3
#CSS では、主に box-reflect が使用されます。フォントの反射効果を実現するためにプロパティを使用しました。 box-reflect プロパティは、主にオブジェクトの反射を設定または取得するために使用されます。 box-reflect syntaxbox-reflect:none | <direction> <offset>? <mask-box-image>?
-webkit-box-reflect:none | <direction> <offset>? <mask-box-image>? box-reflect:none | <direction> <offset>? <mask-box-image>?
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <style> html,body{ margin:50px 0; } .reflect{ width:950px; margin:0 auto; -webkit-box-reflect:below 0 -webkit-linear-gradient(transparent,transparent 50%,rgba(255,255,255,.3)); font:bold 100px/1.231 georgia,sans-serif; text-transform:uppercase; } </style> </head> <body> <div>你看到倒影了么?</div> </body> </html>
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <style> html,body{ margin:50px 0; } .reflect{ width:950px; margin:0 auto; -webkit-box-reflect:below 0 -webkit-linear-gradient(transparent,transparent 50%,rgba(255,255,255,.3)); font:bold 100px/1.231 georgia,sans-serif; text-transform:uppercase; } </style> </head> <body> <div>你看到倒影了么?</div> </body> </html>
以上がCSS3でフォントリフレクションを実装する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。