'Javascript' 카테고리의 다른 글
Buefy UI Framewrk - Vuejs (0) | 2021.06.26 |
---|---|
Quasar UI Framewrk - Vuejs (0) | 2021.02.19 |
[Javascript] svelte (0) | 2019.12.03 |
[Javascript] ag-grid (0) | 2019.10.20 |
BootboxJS — Bootstrap의 모달을 쉽게 컨트롤 하자 (0) | 2019.05.27 |
Buefy UI Framewrk - Vuejs (0) | 2021.06.26 |
---|---|
Quasar UI Framewrk - Vuejs (0) | 2021.02.19 |
[Javascript] svelte (0) | 2019.12.03 |
[Javascript] ag-grid (0) | 2019.10.20 |
BootboxJS — Bootstrap의 모달을 쉽게 컨트롤 하자 (0) | 2019.05.27 |
Vuetify UI Framewrk - Vuejs (0) | 2021.06.26 |
---|---|
Quasar UI Framewrk - Vuejs (0) | 2021.02.19 |
[Javascript] svelte (0) | 2019.12.03 |
[Javascript] ag-grid (0) | 2019.10.20 |
BootboxJS — Bootstrap의 모달을 쉽게 컨트롤 하자 (0) | 2019.05.27 |
관련 자료
github.com/quasarframework/quasar
Quasar는 안드로이드의 Material Design 과 IOS의 테마를 둘 다 지원합니다
Vuetify UI Framewrk - Vuejs (0) | 2021.06.26 |
---|---|
Buefy UI Framewrk - Vuejs (0) | 2021.06.26 |
[Javascript] svelte (0) | 2019.12.03 |
[Javascript] ag-grid (0) | 2019.10.20 |
BootboxJS — Bootstrap의 모달을 쉽게 컨트롤 하자 (0) | 2019.05.27 |
관련 자료
https://github.com/sveltejs/svelte
https://svelte.dev/tutorial/basics
Virtual DOM을 사용하지 않고 더 적은 코드로(Vuejs, React 대비) 개발을 할 수 있는 svelte다.
Buefy UI Framewrk - Vuejs (0) | 2021.06.26 |
---|---|
Quasar UI Framewrk - Vuejs (0) | 2021.02.19 |
[Javascript] ag-grid (0) | 2019.10.20 |
BootboxJS — Bootstrap의 모달을 쉽게 컨트롤 하자 (0) | 2019.05.27 |
Mobx - Simple, scalable state management (0) | 2019.05.11 |
관련 자료
https://www.ag-grid.com/example.php#/
https://www.ag-grid.com/features-overview/
https://poponyang.tistory.com/entry/aggrid-사용기
Quasar UI Framewrk - Vuejs (0) | 2021.02.19 |
---|---|
[Javascript] svelte (0) | 2019.12.03 |
BootboxJS — Bootstrap의 모달을 쉽게 컨트롤 하자 (0) | 2019.05.27 |
Mobx - Simple, scalable state management (0) | 2019.05.11 |
BootstrapVue (0) | 2019.05.02 |
관련 자료
https://github.com/makeusabrew/bootbox
아래와 같은 코드로 쉽게 Bootstrap의 모달을 사용할 수 있다.
아래는 웹 페이지에서 jquery와 통합한 소스 ( 홈페이지에 나와 있는 가이드 소스 )
<!-- set up the modal to start hidden and fade in and out -->
<div id="myModal" class="modal fade">
<div class="modal-dialog">
<div class="modal-content">
<!-- dialog body -->
<div class="modal-body">
<button type="button" class="close" data-dismiss="modal">×</button>
Hello world!
</div>
<!-- dialog buttons -->
<div class="modal-footer"><button type="button" class="btn btn-primary">OK</button></div>
</div>
</div>
</div>
<!-- sometime later, probably inside your on load event callback -->
<script>
$("#myModal").on("show", function() { // wire up the OK button to dismiss the modal when shown
$("#myModal a.btn").on("click", function(e) {
console.log("button pressed"); // just as an example...
$("#myModal").modal('hide'); // dismiss the dialog
});
});
$("#myModal").on("hide", function() { // remove the event listeners when the dialog is dismissed
$("#myModal a.btn").off("click");
});
$("#myModal").on("hidden", function() { // remove the actual elements from the DOM when fully hidden
$("#myModal").remove();
});
$("#myModal").modal({ // wire up the actual modal functionality and show the dialog
"backdrop" : "static",
"keyboard" : true,
"show" : true // ensure the modal is shown immediately
});
</script>
bootbox 5.0 부터는 bootstrap 4을 지원한다.
[Javascript] svelte (0) | 2019.12.03 |
---|---|
[Javascript] ag-grid (0) | 2019.10.20 |
Mobx - Simple, scalable state management (0) | 2019.05.11 |
BootstrapVue (0) | 2019.05.02 |
브라우저에서 particle을 만들어 보자 (0) | 2019.04.19 |
관련 자료
https://github.com/mobxjs/mobx
http://woowabros.github.io/experience/2019/01/02/kimcj-react-mobx.html
https://mobx.js.org/getting-started.html
https://brunch.co.kr/@hee072794/93
Redux, Mobx, Flux 모두 상태관리를 할 수 있는 라이브러리이다. ( 물론 각각의 다른 역할도 부가적으로 가지고 있기 때문에 절대적인 추천을 할 수는 없을 것이다. ). 상태관리를 통해 복잡한 코딩을 간단하게 업데이트를 할 수 있게 구성할 수 있다.
[Javascript] ag-grid (0) | 2019.10.20 |
---|---|
BootboxJS — Bootstrap의 모달을 쉽게 컨트롤 하자 (0) | 2019.05.27 |
BootstrapVue (0) | 2019.05.02 |
브라우저에서 particle을 만들어 보자 (0) | 2019.04.19 |
nextjs - service side react framework (0) | 2019.04.16 |
관련 자료
https://blog.logrocket.com/getting-started-with-bootstrapvue-2d8bf907ef11
https://github.com/bootstrap-vue/bootstrap-vue
Vue.js와 세계에서 가장 널리 사용되는 프런트 엔드 CSS 라이브러리 인 Bootstrap 4를 사용하여 웹에서 반응 형 모바일 우선 프로젝트를 구축하십시오.
BootstrapVue는 광범위하고 자동화 된 WAI-ARIA 액세스 가능성 마크 업을 갖춘 Vue.js 2.5+에서 사용할 수있는 가장 포괄적 인 Bootstrap V4 구성 요소 및 그리드 시스템 구현 중 하나를 제공합니다.
#WAI-ARIA
https://github.com/lezhin/accessibility/blob/master/aria/README.md
Vue.js를 사용하여 반응이 빠른 모바일 우선 사이트 구축을위한 Bootstrap V4를 시작하십시오.
Using module bundlers
# With npm
npm i vue bootstrap-vue bootstrap
# With yarn
yarn add vue bootstrap-vue bootstrap
진입점에 아래 코드 삽입
// app.js
import Vue from 'vue'
import BootstrapVue from 'bootstrap-vue'
Vue.use(BootstrapVue)
Bootstrap and BootstrapVue css 파일 삽입
// app.js
import 'bootstrap/dist/css/bootstrap.css'
import 'bootstrap-vue/dist/bootstrap-vue.css'
- Vue CLI 2 이용해서 시작하기
# Ensure Vue CLI is installed and up to date
npm i -g vue-cli
# Initialize a BootstrapVue project in the directory 'my-project'
vue init bootstrap-vue/webpack-simple my-project
# Change into the directory
cd my-project
# Install dependencies
npm i
# Fire up the dev server with HMR
npm run dev
아래 그림은 BootstrapVue에서 Form의 기본 예제로 화면에 띄운 그림이다.
BootboxJS — Bootstrap의 모달을 쉽게 컨트롤 하자 (0) | 2019.05.27 |
---|---|
Mobx - Simple, scalable state management (0) | 2019.05.11 |
브라우저에서 particle을 만들어 보자 (0) | 2019.04.19 |
nextjs - service side react framework (0) | 2019.04.16 |
preactjs - react의 subset, simple, lightweight library (0) | 2019.04.12 |
관련 자료
https://vincentgarreau.com/particles.js/#default
웹을 개발하면서 인트로나, 로그인 페이지의 배경으로 particle을 이용해 꾸며볼 수 있다.
Mobx - Simple, scalable state management (0) | 2019.05.11 |
---|---|
BootstrapVue (0) | 2019.05.02 |
nextjs - service side react framework (0) | 2019.04.16 |
preactjs - react의 subset, simple, lightweight library (0) | 2019.04.12 |
MS의 new SPA Framework Blazor - WebAssembly 지원( Browser-based web apps ) (0) | 2018.06.18 |
관련 자료
NextJS는 서버사이드렌더링(SSR)과 code splitting 등을 지원하는 reactjs 전용 프레임워크다. 아래에는 크게 네가지로 NextJS의 특징을 간략하게 모아 보았다.
Take the pain out of creating Universal React apps with Next.js
Static Sites, No Compromise
BootstrapVue (0) | 2019.05.02 |
---|---|
브라우저에서 particle을 만들어 보자 (0) | 2019.04.19 |
preactjs - react의 subset, simple, lightweight library (0) | 2019.04.12 |
MS의 new SPA Framework Blazor - WebAssembly 지원( Browser-based web apps ) (0) | 2018.06.18 |
Babel - javascript compiler, Use next generation JavaScript, today (0) | 2016.06.18 |