소스 검색

better mouseover

master
Pascal Gloor 6 년 전
부모
커밋
ba4f01c4cd
1개의 변경된 파일4개의 추가작업 그리고 7개의 파일을 삭제
  1. 4
    7
      www/js/autodoc.js

+ 4
- 7
www/js/autodoc.js 파일 보기

@@ -32,17 +32,14 @@ $(document).ready(function () {
page_home_scroll();
});

$('#autodoc_home_modal_left').hover(
function(e) {
$('#autodoc_home_modal_left').mouseenter(function(e) {
$(e.target).addClass("text-light bg-secondary");
$(e.target).removeClass("text-secondary bg-light");
},
function(e) {
})
.mouseleave(function(e) {
$(e.target).removeClass("text-light bg-secondary");
$(e.target).addClass("text-secondary bg-light");

}
)
});

});


Loading…
취소
저장