$(function(){
checkhHtml5();
function checkhHtml5() {
if (typeof(Worker) === "undefined") {
$.get('admin/checkhtml5.html', function(data){
$('body').html(data);
})
}
}
function ballShow(isStop){
$('#ball-func').stop(isStop, isStop).show(200);
$('#ball-nav').stop(isStop, isStop).show(300);
}
function ballHide(){
$('#ball-func').stop(false, true).hide(200);
$('#ball-nav').stop(false, true).hide(300);
}
$('#ball-func, #ball-nav').hover(function(){
ballShow(false);
},function(){
ballHide();
})
$('#ball').hover(function(){
ballShow(true);
},function(){
ballHide();
})
})
admin/checkhtml5.html 提示页面