tail.php 에... 정보
tail.php 에...본문
모든 페이지에 들어가는 tail.php 에요 (카피라잇)
제가 플래시 뮤직 플레이어를 집어 넣으려고 하는데 그곳에 집어넣어도 음악이
끊어지지 않을까요? 매 클릭(페이지이동) 마다 tail.php를 새로 부른다면
음악이 끊어질텐데....
어떻게 해야 할까요?
제가 플래시 뮤직 플레이어를 집어 넣으려고 하는데 그곳에 집어넣어도 음악이
끊어지지 않을까요? 매 클릭(페이지이동) 마다 tail.php를 새로 부른다면
음악이 끊어질텐데....
어떻게 해야 할까요?
댓글 전체
그런경우 간단하게 프레임셋을 쓰시면됩니다. 그럼 음악이 재생되는 페이지는 유지되면서, 실질적인 사이트는 계속 음악들으면서 이것저것 할 수 있죠
매 페이지마다 끊어지지 않으려면 frameset을 이용해야 하지 않을까요? 그렇다면 tail.php보다는 head.php쪽에 frameset 적용을 하는 것이 합당하지 않을까요?
아니면
index.html에
<frameset rows="*,0" frameborder="0" frame="0" border="0">
<frame src="index.php" scrolling="auto" marginwidth=0 marginheight=0 >
<frame src="뮤직플레이어.php" scrolling="no" marginwidth="0">
</frameset>
index.html에
<frameset rows="*,0" frameborder="0" frame="0" border="0">
<frame src="index.php" scrolling="auto" marginwidth=0 marginheight=0 >
<frame src="뮤직플레이어.php" scrolling="no" marginwidth="0">
</frameset>
모두 너무나 감사드립니다..(__)./