Website background music implementation method

Website background music implementation method
For individual webmasters, how to make their website unique and full of personality has always been the goal of unremitting efforts. In addition to improving the visual effects and interactive functions of the page as much as possible, if you can hear a beautiful and moving music while opening the webpage, I believe this will add a lot of color to your website.

1. Learn to add music files

There are generally two ways to add background music to a web page. The first is to add it through the ordinary <bgsound> tag, and the other is to add it through the <embed> tag.

1. Using the <bgsound> tag

Use Dreamweaver to open the page where you need to add background music, click "Code" to open the code editing view, enter "<" between <body></body>, and select bgsound in the pop-up code prompt box (Figure 1).


Dreamweaver automatically enters the "<bgsound" code and then presses the space bar. The code prompt box will automatically list the attributes of the bgsound tag for you to choose from. The bgsound tag has five attributes, among which balance is used to set the left and right balance of the music, delay is used to set the playback delay, loop is used to control the number of loops, src is the path of our music file, and volume is used to set the volume. Generally, when adding background music, we do not need to set left and right balance and delay for the music, so only a few main parameters are needed. The final code is as follows:

<bgsound src="music.mid" loop="-1">

Among them, loop="-1" means that the music will be played in an infinite loop. If you want to set the number of times the music is played, just change it to the corresponding number.

This method of adding background music is the most basic and most commonly used method. The background music format supports most of the current mainstream music formats, such as WAV, MID, MP3, etc. If you want to take into account viewers with lower internet speeds, you can use MID sound effects as the background music for the web page. Because MID music files are small, they can be loaded and played quickly when the web page is opened. However, MID also has its shortcomings. It can only store the melody of the music, but does not have nice harmonies or lyrics. If your internet speed is fast or you think the MID music is a bit monotonous, you can also add MP3 music. Just change happy.mid in the above code to happy.mp3.

Tip: Adding background music in FrontPage is relatively easier than in Dreamweaver. Just make relevant settings in the "Background" dialog box (Figure 2).


(ii) Using the <embed> tag

Using the <embed> tag to add music is not a very common method, but it is very powerful. If combined with some playback controls, you can create a web player.

Its usage is basically the same as the first method, except that in the first step, do not select gbsound in the code prompt box, but select embed instead. Then select its properties and set them accordingly (Figure 3). As can be seen from the figure, the properties of embed are much more than the five properties of gbsound. The final code is as follows: <embed src="music.mp3" autostart="true" loop="true" hidden="true"></embed>.

Among them, autostart is used to set whether the music plays automatically when the page is opened, and hidden is used to set whether to hide the media player. Because embed is actually like a music player on a web page, if it is not hidden, your system's default media plug-in will be displayed.

For these two methods, I think each has its own advantages and disadvantages: in the first method, the music plays when the page is opened. If the page is minimized, the music will automatically pause. If the second method is used, this will not happen. As long as the window is not closed, it will continue to play. Therefore, I hope that everyone will choose the method of adding music according to their own situation during use.

After learning the simple method of adding music to the web, you should work on the interface and functions. We can use "Web Music Player" to create a stylish music player.

2. Create a stylish music player

After learning the simple method of adding music to the web, you should work on the interface and functions. We can use "Web Music Player" to create a stylish music player.

Tip: "Web Music Player" is a web page plug-in. After running the created page, it will call the system's built-in Windows Media player to play the pre-set MP3 songs.

1. Simple settings

First, download the playback plug-in (download address: https://www.jb51.net/jiaoben/32793.html), unzip it and enter the directory. Music.htm is the playback bar page we want to load on the homepage, list.htm is the pop-up page for viewers to view the playlist, the js folder contains several playback control files, and img contains some playback interface image files.

Use web editing software to open music.htm and find the following code:

<script Language="Javascript">
var blnAutoStart = true?
var blnRndPlay = false?
var blnStatusBar = false?
var blnShowVolCtrl = true?
var blnShowPlist = true?
var blnUseSmi = false?
var blnLoopTrk = true?
var blnShowMmInfo =false?
</script>

Here you can make basic settings for the player. The above sentences mean: whether to play automatically, whether to play sequentially, whether to display the status bar, whether to display the sound control status, whether to allow the display of the playlist, whether to use the SMI mode, whether to play in a loop, and whether to display song information. You can set them according to your needs, where true means "yes" and false means "no". In addition, to make your play bar more personalized, you can also find the <marquee>......</marquee> statement in the music.htm code and change the homepage name to the name of your own homepage.

(II) Add a playlist

Open the playlist file bglist.js in the js folder, and you can add your favorite songs to the list here. The specific format of adding is mkList "song path"? "song description"?, where "song path" can be the local address you uploaded to the host, or you can specify the MP3 address on the network, and "song description" is used to scroll on the play bar, which can be the singer and the name of the song. For example, if we want to add Jay Chou's "Tornado", we first find the link address that can be played in real time on the Internet, and then add it to the list: mkList "http://202.102.43.37/hy/yinyue/周杰伦/09.mp3"? "Jay Chou - Tornado".

Tip: In order to keep your homepage music fresh, we can update the playlist at regular intervals.

(III) Install the player

In order to prevent the continuity of song playback from being affected by clicking on the homepage link, we need to install the playback page music.htm on the homepage in the form of a frame.

Taking FrontPage 2003 as an example, execute "New → Other Web Page Templates" to pop up the "Web Page Template" window, select "Frame Web Page → Footer", and after "OK", set the initial web page in the upper frame to point to your homepage, and the lower frame to point to music.htm. Then remove the frame border in the frame properties and adjust the height of the lower frame appropriately (Figure 4). The frame height should be enough to accommodate the height of the play bar. Once you are satisfied with the preview, you can save the page and then point your website to this new page.

<<:  SQL implementation of LeetCode (184. The highest salary in the department)

>>:  Introducing the code checking tool stylelint to share practical experience

Recommend

15 important variables you must know about MySQL performance tuning (summary)

Preface: MYSQL should be the most popular WEB bac...

IIS7 IIS8 http automatically jumps to HTTPS (port 80 jumps to port 443)

IIS7 needs to confirm whether the "URL REWRI...

Best tools for taking screenshots and editing them in Linux

When I switched my primary operating system from ...

Solution to the inaccessibility of Tencent Cloud Server Tomcat port

I recently configured a server using Tencent Clou...

How to implement logic reuse with Vue3 composition API

Composition API implements logic reuse steps: Ext...

MySQL database introduction: detailed explanation of database backup operation

Table of contents 1. Single database backup 2. Co...

Detailed explanation of Vue development website SEO optimization method

Because the data binding mechanism of Vue and oth...

js+css to realize three-level navigation menu

This article example shares the specific code of ...

Some problems that may be caused by inconsistent MySQL encoding

Stored procedures and coding In MySQL stored proc...

How to uninstall MySQL 5.7.19 under Linux

1. Find out whether MySQL was installed before Co...

Do designers need to learn to code?

Often, after a web design is completed, the desig...

MySQL 8.0.20 compressed version installation tutorial with pictures and text

1. MySQL download address; http://ftp.ntu.edu.tw/...

MySQL 5.7.17 installation and configuration method graphic tutorial (windows10)

MySQL 5.7.17 installation and configuration metho...