묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
iframe,embed 동영상 자동 리사이징 애드온 MPEG4 지원?
2016.02.02 18:58
동영상 파일 첨부 후 멀티미디어링크에서
preg_match_all('/(width|height)([^[:digit:]]+)([0-9]+)/i',$style,$matches);
$width = trim($matches[3][0]);
$height = trim($matches[3][1]);
if(!$width) $width = 624;
if(!$height) $height = 352;
위와같이 사이즈를 조정하면 피시에서는 적당한 크기로 나타나는데요 모바일에서는 레이아웃 우측으로 벗어나 버리네요 그래서 iframe,embed 동영상 리사이징 애드온을 실행해봤는데 변동이 전혀 없어서요... 방법이 없을까요?