Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 크롤링
- config
- mapping
- memcached
- memcache
- wordpress rss
- wordpress function
- 워드프레스 rss
- 워드프레스
- 아파치
- 워드프레스 피드
- Elasticsearch
- Kibana
- 아파치 프록시
- 프록시
- wordpress feed
- Apache
- htpasswd
- 인스타그램
- 맵핑
- graph api
- 설정 파일
- template
- htaccess
- elasticsrach template
- Wordpress
- 엘라스틱서치
Archives
- Today
- Total
EunsooD
유툽 플레이를 팝업으로 구상할때.. 본문
반응형
<div id='#video-view'> 하고 출력할 div를 만들어 놓으면..
function yt_player( yt_url )
{
alert( yt_url);
var iframe = $("<iframe>").attr("src", yt_url).css({"width": 400, "height": 300});
var title = $("<h1>").text("동영상 제목");
iframe.wrap("<div class='class-video'>");
$("#video-view").html(title).append(iframe);
}
이렇게 주면 된다.
반응형
Comments