text-shadow: -1px -1px 0px #ffffff;
<a style='position: fixed; bottom: 25px; right: 1px; cursor:pointer; display:none;' href='#' id='Go_Top'>
Вверх
</a>
$(function() {
$.fn.scrollToTop = function() {
$(this).hide().removeAttr("href");
if ($(window).scrollTop() >= "250") $(this).fadeIn("slow")
var scrollDiv = $(this);
$(window).scroll(function() {
if ($(window).scrollTop() <= "250") $(scrollDiv).fadeOut("slow")
else $(scrollDiv).fadeIn("slow")
});
$(this).click(function() {
$("html, body").animate({scrollTop: 0}, "slow")
})
}
});
$(function() {
$("#Go_Top").scrollToTop();
});
Не разбираюсь в ваших в фонгапах, но в какаотач делается так:
Добавляем в MediaPlayer.framework в проект, подключаем его в файле:
#import "MediaPlayer/MediaPlayer.h"
// получаем значение
float volume = [MPMusicPlayerController applicationMusicPlayer].volume;
// устанавливаем
[[MPMusicPlayerController applicationMusicPlayer] setVolume:1.0];