Angular-material-typography

提供:Dev Guides
移動先:案内検索

角材-タイポグラフィ

Angular Materialは、Angular JSアプリケーション全体で視覚的な一貫性を作成するために使用できるさまざまなタイポグラフィCSSクラスを提供します。

次の表に、さまざまなクラスとその説明を示します。

Sr.No Class Name & Description
1

md-display-1

通常の34ピクセルのテキストを表示します。

2

md-display-2

通常の45ピクセルのテキストを表示します。

3

md-display-3

通常の56pxのテキストを表示します。

4

md-display-4

テキストをLight 112pxで表示します。

5

md-headline

通常の24pxでテキストを表示します。

6

md-title

中20pxのテキストを表示します。

7

md-subhead

通常の16pxのテキストを表示します。

8

md-body-1

通常の14ピクセルのテキストを表示します。

9

md-body-2

中14pxのテキストを表示します。

10

md-button

中14pxのボタンを表示します。

11

md-caption

通常の12pxのテキストを表示します。

次の例は、タイポグラフィCSSクラスの使用を示しています。

*_am_typography_*
<html lang = "en">
   <head>
      <link rel = "stylesheet"
         href = "https://ajax.googleapis.com/ajax/libs/angular_material/1.0.0/angular-material.min.css">
      <script src = "https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>
      <script src = "https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular-animate.min.js"></script>
      <script src = "https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular-aria.min.js"></script>
      <script src = "https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular-messages.min.js"></script>
      <script src = "https://ajax.googleapis.com/ajax/libs/angular_material/1.0.0/angular-material.min.js"></script>
      <link rel = "stylesheet" href = "https://fonts.googleapis.com/icon?family=Material+Icons">

      <script language = "javascript">
         angular
            .module('firstApplication', ['ngMaterial'])
            .controller('typographyController', typographyController);

         function typographyController ($scope) {
         }
      </script>
   </head>

   <body ng-app = "firstApplication">
      <div class = "frameContainer" ng-controller = "typographyController as ctrl"
         layout = "column" layout-padding layout-wrap layout-fill
         style = "padding-bottom: 32px;" ng-cloak>
         <p class = "md-display-4">.md-display-4</p>
         <p class = "md-display-3">.md-display-3</p>
         <p class = "md-display-2">.md-display-2</p>
         <p class = "md-display-1">.md-display-1</p>
         <p class = "md-headline">.md-headline</p>
         <p class = "md-title">.md-title</p>
         <p class = "md-subhead">.md-subhead</p>
         <p class = "md-body-1">.md-body-1</p>
         <p class = "md-body-2">.md-body-2</p>
         <md-button>.md-button</md-button>
         <p class = "md-caption">.md-caption</p>
      </div>
   </body>
</html>

結果

結果を確認します。