문제

Hi I'd like to have play bar visible all the time but is only visible when hover, can somebody guide me where to modify the script thank you. I'm at the moment in college but they dont teach anything useful, so I have to do it on my own sorry english is not my language

    $("#equalizer audio")();

equalizer.hover(function(){
    $("#equalizer audio").fadeIn(400);
},function(){
    $("#equalizer audio").(400);
});

var i = 0;

$(".equalizer_bar").each(function(index) {

  for( var j=0;j<n_components_per_bar;j++)
  {  

       $(this).append("<div class='equalizer_bar_component' id='bar_"+i+"_component_"+j+"'></div>");

  }

  $(".equalizer_bar_component",this).reverseOrder();

  i++;
});
도움이 되었습니까?

해결책

Replace this:

$("#equalizer audio")();

equalizer.hover(function(){
    $("#equalizer audio").fadeIn(400);
},function(){
    $("#equalizer audio").(400);
});

with:

$("#equalizer audio").show();
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top