반응형

Modal

Use Bootstrap’s JavaScript modal plugin to add dialogs to your site for lightboxes, user notifications, or completely custom content.

 

https://getbootstrap.com/docs/4.0/components/modal/

 

Modal

Use Bootstrap’s JavaScript modal plugin to add dialogs to your site for lightboxes, user notifications, or completely custom content.

getbootstrap.com

 

 

 

 

 

 


 

.https://dgkim5360.tistory.com/entry/Bootstrap-modal-custom-size-and-location

반응형
반응형


Slide : http://seoul.reactjs.kr/assets/slides/react_native.pdf



...

반응형
반응형

http://seoul.reactjs.kr/


지난 11월 4일 React Korea 커뮤니티에서 주관한 React Seoul 발표 영상입니다. React를 어디까지 적용할 수 있는지 그 범용성과 사용성을 확인할 수 있는 발표 자료입니다.


1. React로 다른 페이지에 임베디드되는 웹앱 개발기

- https://youtu.be/AnXU3cG2giw


2. React / Redux for Smart TV UI

- https://youtu.be/iXgpPwVh67c

   http://seoul.reactjs.kr/assets/slides/react_redux_for_smart_tv_ui.pdf


3. 리액트 네이티브 어디까지 해봤니?

- https://youtu.be/Wt9H66cOCnQ

  http://seoul.reactjs.kr/assets/slides/react_native.pdf


4. Storybook Driven Development: Storybook을 통한 React UI Component 및 State 관리하기

- https://youtu.be/KnROzZ5Vszg

  http://seoul.reactjs.kr/assets/slides/storybook_driven_development.pdf


5. Decorator + HOC + React = Fantastic!!

- https://youtu.be/1o1CqzTtt2o

  http://seoul.reactjs.kr/assets/slides/react_decorator_hoc_fantastic.pdf




Slide : http://seoul.reactjs.kr/assets/slides/embedded_react_application.pdf



Slide : http://seoul.reactjs.kr/assets/slides/react_native.pdf



...




반응형
반응형

embed 소스 경로 교체하기

 

id가 audio_file 인 embed 태그가 있다. 소스를 변경하고 싶은데,  jQuery .attr() 로는 변경되지 않는다.

어떻게 할까?

 

<embed src="/resources/audio/_webbook_0001/embed_test.mp3" type="audio/mpeg" id="audio_file>

 

 

StackOverflow에서 찾았다.

 

해당 embed의 parent를 만든다. 부모를 만들어서 부모에 바인드 시키는 것이지.

그래서, 해당 embed를 지우고 다시 부모가 자식을 만들면 동일한 자리에 embed가 생성될 것이다.

 

var parent = $('embed#audio_file').parent();
var newElement = "<embed scr='new src' id='audio_file'>";

$
('embed#audio_file').remove();
parent
.append(newElement);

 

 

 

 

 

http://stackoverflow.com/questions/2493706/javascript-changing-src-attribute-of-a-embed-tag

 

 

반응형
반응형

iframe > embed 변경하기

 

 

<iframe width="640" height="360" src="http://www.youtube.com/embed/Szky9k_v7Zo?feature=player_embedded" frameborder="0" allowfullscreen></iframe>


엠바다 게시판에 iframe 태그를 안먹더라구요~~

이렇게 된 태그를 이렇게 바꿔주세요.

ifame > embed

embed > v


<embed width="640" height="360" src="http://www.youtube.com/v/Szky9k_v7Zo?feature=player_embedded" frameborder="0" allowfullscreen="">

 

 

 

 

.

 

 

반응형

+ Recent posts