2012-02-20 4 views
0

내 웹 앱의 툴팁을 구현하기 위해 트위터 부스트랩 (twipsy)을 사용하고 있습니다. 툴팁 디스플레이에 지연을 추가하고 싶습니다 (2 초 후 말하기). 다음과 같이twipsy 툴팁을 표시하는 데 지연을 구현하는 방법

내 구현 내가 아바타에 마우스를 움직일 때

%li.friend 
    %a{:href=>"#!/<%=nick%>/<%=question_slug%>", :rel=>"twipsy", :title=>"<%=nick%>&#39;s answers for this question", :delay=> {show:2000}} 
    %img{src: "<%= avatar_url %>"} 

그러나, 툴팁은 여전히 ​​즉시 표시 (지연 참조).

툴팁의 표시 지연을 구현할 수있는 방법에 대한 조언이 있으십니까?

답변

1

이 시도 :

%li.friend 
    %a{:href=>"#!/<%=nick%>/<%=question_slug%>", :rel=>"twipsy", :title=>"<%=nick%>&#39;s answers for this question", :delay=> 2000} 
    %img{src: "<%= avatar_url %>"} 
:

%li.friend 
    %a{:href=>"#!/<%=nick%>/<%=question_slug%>", :rel=>"twipsy", :title=>"<%=nick%>&#39;s answers for this question", :delay=> {show:2000, hide: 0}} 
    %img{src: "<%= avatar_url %>"} 

을 또는 당신은 또한 숨기기에 대한 지연을 원하는 경우

관련 문제