2017-06-22 15 views
0

を表示されません。私は私が従っているYouTubeからチュートリアルをダウンロードしました。私が直面している問題は、私のアイコンが表示されていないことです。ブートストラップのアイコンは、私がUIとして、ブートストラップ使用してangularjsアプリを開発してい

<!DOCTYPE html> 
<html> 

    <head> 
    <link data-require="[email protected]*" data-semver="4.0.5" rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" /> 
    <script data-require="[email protected]*" data-semver="4.0.5" src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.5/js/bootstrap.min.js"></script> 
    <link rel="stylesheet" href="style.css" /> 
    <script src="script.js"></script> 
    </head> 

    <body> 
    <div class="container-fluid"> 
    <div class="row"> 
     <div class="col-xs-12"> 
     <h1><span class="glyphicon glyphicon-align-left" aria-hidden="true"></span> Hello Plunker!</h1> 
     </div> 

    </div> 
    <div class="row"> 
     <div class="col-sm-3"> 
     Nav 
     </div> 
     <div class="col-sm-9"> 
     <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p> 
     </div> 
    </div> 
    </div> 
    </body> 

</html> 

答えて

0

ブートストラップ4では、バージョン3のブートストラップでパッケージ化されたglyphiconsフォントが削除されました。

詳しい情報は、代替オプションと一緒に、hereを見つけることができます。

1

ブートストラップのv4グリフコンはサポートされていないため、Font Awesomeアイコンパックを使用することをお勧めします。私は、ブートストラップのグリフィコンを使用するウェブサイトを見たことさえ確信していません。アイコンを使用するほぼすべてのウェブサイトは、フォントの素晴らしいものです。見て、私はあなたが必要なものを見つけることを確信しています。

素晴らしいフォント:http://fontawesome.io/icons/

それが十分でない場合は、あなたがたが別のリポジトリから、SVGのものを使用することができます。また、別のリポジトリから、https://simpleicons.org/

またはこれらのもの:http://konpa.github.io/devicon/

関連する問題