묻고답하기
유튜브(YouTube) 모듈 반응형으로!!!
2016.12.07 06:38
Michael님 유튜브(YouTube) 모듈 ver. 1.1.1.
개발하신 유튜브 모https://www.xpressengine.com/?mid=download&package_id=22753675
youtube.view.php 파일 열어보면
//Player Width
if(is_null($this->module_info->player_width)) {
$playerSize[width] = 640;
} else {
$playerSize[width] = $this->module_info->player_width;
}
//Player Height
if(is_null($this->module_info->player_height)) {
if(is_null($this->module_info->player_width)) {
$playerSize[height] = 480;
} else {
$playerSize[height] = $playerSize[width]/4*3;
}
} else {
$playerSize[height] = $this->module_info->player_height;
}
Context::set("videoSize", $playerSize);
혹시 아시는 분이나 적용하신 분 계신가요?
- [2018/08/29] 묻고답하기 로그인해야만 사이트가 보여요 *2
- [2018/02/01] 묻고답하기 php 구문 오류라고 나오는데 어디가 잘못된건지 ㅠㅠ
- [2016/09/28] 묻고답하기 반응형 웹 질문! 화면을줄였을때 이미지 변경하는법 ㅜㅜ *1
- [2016/05/21] 묻고답하기 제로보드 코딩 관련 질문입니다ㅠㅠ 메뉴가 안 눌려요...
- [2016/03/24] 묻고답하기 폴더안 txt 문서를 php explode 하여 mysql 에 넣는 과정이 안됩니다ㅠㅠ