質問編集履歴
1
使用しているjqueryのコードを追加しました
test
CHANGED
File without changes
|
test
CHANGED
@@ -499,3 +499,65 @@
|
|
499
499
|
}
|
500
500
|
|
501
501
|
```
|
502
|
+
|
503
|
+
|
504
|
+
|
505
|
+
|
506
|
+
|
507
|
+
|
508
|
+
|
509
|
+
ホバーした処理はこのコードを使うことで行われますが
|
510
|
+
|
511
|
+
jquery
|
512
|
+
|
513
|
+
```
|
514
|
+
|
515
|
+
$(function(){
|
516
|
+
|
517
|
+
$('#header-treatment, #menu-item-1184').hover(
|
518
|
+
|
519
|
+
function() {
|
520
|
+
|
521
|
+
$('.header-treatment, .sub-menu').fadeIn();
|
522
|
+
|
523
|
+
},
|
524
|
+
|
525
|
+
function() {
|
526
|
+
|
527
|
+
$('.header-treatment, .sub-menu').fadeOut();
|
528
|
+
|
529
|
+
}
|
530
|
+
|
531
|
+
)
|
532
|
+
|
533
|
+
}
|
534
|
+
|
535
|
+
```
|
536
|
+
|
537
|
+
|
538
|
+
|
539
|
+
ホバーの部分をクリックにすると反応しないです
|
540
|
+
|
541
|
+
```
|
542
|
+
|
543
|
+
$(function(){
|
544
|
+
|
545
|
+
$('#header-treatment, #menu-item-1184').click(
|
546
|
+
|
547
|
+
function() {
|
548
|
+
|
549
|
+
$('.header-treatment, .sub-menu').fadeIn();
|
550
|
+
|
551
|
+
},
|
552
|
+
|
553
|
+
function() {
|
554
|
+
|
555
|
+
$('.header-treatment, .sub-menu').fadeOut();
|
556
|
+
|
557
|
+
}
|
558
|
+
|
559
|
+
)
|
560
|
+
|
561
|
+
|
562
|
+
|
563
|
+
```
|