Last active
September 24, 2016 07:15
-
-
Save tyoshikawa1106/cc01e50e489b079259f9f0a007f56969 to your computer and use it in GitHub Desktop.
Visualforce × Bootstrap サンプル
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<apex:page showHeader="true" sidebar="true" id="page"> | |
<apex:includeScript value="https://code.jquery.com/jquery-2.2.4.min.js" /> | |
<apex:stylesheet value="{!URLFOR( $Resource.Bootstrap337, 'dist/css/bootstrap.css' )}" /> | |
<apex:includeScript value="{!URLFOR( $Resource.Bootstrap337, 'dist/js/bootstrap.min.js' )}"/> | |
<!-- App --> | |
<div class="myBootstrap"> | |
<!-- alert --> | |
<div class="alert alert-success" role="alert">Success!!</div> | |
<div class="alert alert-info" role="alert">Info!!</div> | |
<div class="alert alert-warning" role="alert">Warning!!</div> | |
<div class="alert alert-danger" role="alert">Danger!!</div> | |
<!-- glyphicon --> | |
<div> | |
<button type="button" class="btn btn-default" aria-label="Left Align"> | |
<span class="glyphicon glyphicon-align-left" aria-hidden="true"></span> | |
</button> | |
<button type="button" class="btn btn-default btn-lg"> | |
<span class="glyphicon glyphicon-star" aria-hidden="true"></span> Star | |
</button> | |
</div> | |
</div> | |
</apex:page> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment