-
GridSatck (Test.html)기초/자바스크립트 2022. 3. 16. 11:30
대쉬보드를 위젯형식으로 만드는 방법을 찾아보다가 좋은 소스를 발견했다.
사용법
Node.js는 설치용으로만 사용한다.
Test.html
<script src="./gridstack/dist/gridstack-h5.js"></script> <link href="./gridstack/dist/gridstack.min.css" rel="stylesheet"/> <style type="text/css"> .grid-stack { background: #FAFAD2; } .grid-stack-item-content { background-color: #18BC9C; } </style> <div class="grid-stack"> <div class="grid-stack-item" gs-w="1"> <div class="grid-stack-item-content">Item 1</div> </div> <div class="grid-stack-item" gs-w="2"> <div class="grid-stack-item-content">Item 2 wider</div> </div> <div class="grid-stack-item" gs-w="12"> <div class="grid-stack-item-content">Item 2 wider</div> </div> </div> <script type="text/javascript"> GridStack.init(); </script>
'기초 > 자바스크립트' 카테고리의 다른 글
[JS] 제너레이터 (0) 2022.12.17 [JS] 일급 함수와 고차함수 (0) 2022.12.14 [JS] 모자이크 처리 (2) 2022.03.04 [Javascript] OpenLayers + GeoServer + PostGIS + VWORLD + WFS,WMS (7) 2020.11.11 [JS] 기초 훈련(내장함수) (0) 2017.04.26