play background music continuously
I am playing a background on my webpage by using miniswfloopplay开发者_开发问答er, now I want the music to play continuously throughout the website, currently the music starts all over again when a page loads which is quite obvious. I am looking for a approach where I can avoid the above situation.
I know similar questions have been posted here, but they are inactive from a long time.
A) Please don't do it without providing an easy way to turn it off. background music is a major nuisance
B) Frames are an awful concept, but this is exactly the kind of scenario they are good for:
<frameset cols="5%,*">
<frame src="music.html" /> <!-- this one always remains -->
<frame src="content.html" /> <!-- this one changes without breaking the frameset,
as long as you only use links with either no target or target="_SELF" -->
</frameset>
(sorry if there are errors in my markup, haven't used frames in about 13 years)
精彩评论