본문 바로가기

Skills/Mobile

[Bootstrap] Download and apply

SMALL
[Bootstrap Info] - 프론트엔드 프레임워크 (Frontend Framework)
부트스크랩을 다운로드하는 방법은 여러가지가 있습니다. 각 방법들은 다른 기술수준과 사용방법이 다릅니다. 당신에게 필요한 것을 찾아 사용하세요.

Bootstrap has a few easy ways to quickly get started, each one appealing to a different skill level and use case. Read through to see what suits your particular needs.

Download

Korea Site : http://getbootstrap.com/

English Site : http://getbootstrap.com/




1. Bootstrap

JS, CSS, Font 를 간단하게 사용할 수 있도록 되어있다. 또 한 사용하기 편하게 간략화 되어있으며, 용량 또한 최소화되어 있습니다.


Compiled and minified CSS, JavaScript, and fonts.



다운로드하고 압축을 해제하면 다음과 같은 구조를 확인할 수 있습니다.

You can check after the download and unzip.



css 및 js, fonts 폴더를 모두 프로젝트 폴더에 넣습니다. 

적용하는 방법은 <header></header>에 아래와 같이 입력합니다.


put the all css, js, fonts folder in project folder. <header></header> tag write. <header></header> apply the under.


<!-- Latest compiled and minified CSS -->

<link rel="stylesheet" href="(project path)/css/bootstrap.min.css">


<!-- Optional theme -->

<link rel="stylesheet" href="(project path)/bootstrap/3.3.2/css/bootstrap-theme.min.css">


<!-- Latest compiled and minified JavaScript -->

<script src="(project path)/bootstrap/3.3.2/js/bootstrap.min.js"></script>




2.Source code

부트스크랩에 모든 JS, CSS 등의 원본파일입니다. 오픈소스 개발자가 아니라면 추천하지 않습니다. 


Source Less, JavaScript, and font files, along with our docs. You do not need to if the open source developer unless.



다운로드하고 압축을 해제하면 다음과 같은 구조를 확인할 수 있습니다.

You can check after the download and unzip.





참고로 모든 javascript plugin은 jQuery를 필요로 합니다. 아래에 주소에서 다운로드할 수 있습니다. 


jQuery required.

Please note that all javascript plugins require jQuery to be included, as shown in the starter template, Consult our, bower.json to see which versions of jQuery are supported. Download from the Under line path.


jQuery Download : http://jquery.com/






orgin : http://getbootstrap.com/


LIST