FAQ - Page
Frequently Asked QuestionsFaq Categories
- Common Questions
Answers about Common Questions - HTML5 Music Player
Answers about HTML5 Music Player - HTML5 Video Player
Answers about HTML5 Video Player - Audio and Video Player
Answers about Audio and Video Player
HTML5 Music Player
The FAQ contains the answers to the most frequently asked questions. Please check these FAQ entries before contacting our suport service.
Select a question to access to the answer.

Answers
Why the loop feature is not working in my iPad?
The loop feature was disabled by Apple from all gadgets that use the IOS operating system.
Go to the questions listWhy the Autoplay is not working in the iPhone?
The autoplay behavior was intentionally disabled by Apple:
In Safari on iPhone OS (for all devices, including iPad), where the user may be on a cellular network and be charged per data unit, autobuffering and autoplay are disabled. No data is loaded until the user initiates it. This means the JavaScript play() and load() methods are also inactive until the user initiates playback, unless the play() method is triggered by user action.
Go to the questions listI want to modify the music player appearance. How can I to replace the images in the css file?
If you load the audio5.css file in a text editor is easy to note that images were embed in the style's file using the mime format.
It is very important reducing the number of connection from mobiles devices, so embed the images in the style file reduces the connections numbers, but if you want to replace the interface's graphics, the process is very simple:
For example if you want to modify the background of controls bar, in the class:
.audio5 .ctrls-container{height:25px;background:url("data:image/png;charset=utf-8;base64,
replace:
iVBORw0KGgoAAAANSUhEUgAAAAEAAAAZCAQAAABamYz0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5c
cllPAAAAB5JREFUCFtjYNjM4PuK6e4fJgYGpv8w9A+VgYtERQCohRjXSe7wEwAAAABJRU5ErkJggg==") repeat-x scroll 0 0 transparent;}"data:image/png;charset=utf-8;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAZCAQAAABamYz0AAAAGXRFWHRTb2Z0d2FyZQBBZG9
iZSBJbWFnZVJlYWR5ccllPAAAAB5JREFUCFtjYNjM4PuK6e4fJgYGpv8w9A+VgYtERQCohRjXSe7wEwAAAABJRU5ErkJggg=="by the URL of image to use as background.
Go to the questions list