묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
페이지 하단에 라디오 같은거 삽입하는법
2014.04.16 20:25
이런거 어떻게 만들죠?
라디오 플레이어 소스를 담은 php를 ftp에 업로드한 후 첫화면을 설정하는 인덱스파일에 그 php 경로를 써서 불러와사용하는 거에요~ 보통 제로보드4로 개인홈페이지 만드시는 분들이 주로 비지엠을 흐르도록 하기 위해 이용하는 방법입니다~
<frame src="해당 라디오플레이어 소스를 적어넣은 php경로" scrolling="no" marginwidth="0" marginheight="0" name="music" noresize>
이걸 상위루트에 있는 index.php 에서 맨 밑부분에 넣어주시면 됩니다.
정리하자면
<frameset rows="*, 라디오 플레이어 나올 높이수치넣기 (ex.30)" frameborder="0" framespacing="0"> <frame src="http://aaa.com/bgm.php" scrolling="no" noresize> </frameset> </html>
이런식으로 넣어주시면 됩니다~ bgm.php 에는 라디오 플레이어의 소스가 들어있어야 겠죠~!!