-
Notifications
You must be signed in to change notification settings - Fork 0
/
application.js
47 lines (32 loc) · 1.27 KB
/
application.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
$(document).ready(function(){
$('.products .bc').on('mouseenter', function() {
$('header').hide();
$(this).closest('body').find('.bc.banner').removeClass("hidden");
$(this).closest('body').find('.bc.banner').addClass("banner");
});
$('.products .bc').on('mouseleave', function() {
$('header').show();
$(this).closest('body').find('.bc.banner').addClass("hidden");
$(this).closest('body').find('.bc.banner').addClass("hidden");
});
$('.products .hr').on('mouseenter', function() {
$('header').hide();
$(this).closest('body').find('.hr.banner').removeClass("hidden");
$(this).closest('body').find('.hr.banner').addClass("banner");
});
$('.products .hr').on('mouseleave', function() {
$('header').show();
$(this).closest('body').find('.hr.banner').addClass("hidden");
$(this).closest('body').find('.hr.banner').addClass("hidden");
});
$('.products .cf').on('mouseenter', function() {
$('header').hide();
$(this).closest('body').find('.cf.banner').removeClass("hidden");
$(this).closest('body').find('.cf.banner').addClass("banner");
});
$('.products .cf').on('mouseleave', function() {
$('header').show();
$(this).closest('body').find('.cf.banner').addClass("hidden");
$(this).closest('body').find('.cf.banner').addClass("hidden");
});
});