質問編集履歴

3

ソースの修正

2015/08/25 06:38

投稿

hiro421
hiro421

スコア63

test CHANGED
File without changes
test CHANGED
@@ -80,6 +80,6 @@
80
80
 
81
81
  });
82
82
 
83
- $("+.acoCont .itemCarousel ul li").tile();
83
+ $(".acoCont .itemCarousel ul li").tile();
84
84
 
85
85
  ```

2

ソースの修正

2015/08/25 06:38

投稿

hiro421
hiro421

スコア63

test CHANGED
File without changes
test CHANGED
@@ -80,8 +80,6 @@
80
80
 
81
81
  });
82
82
 
83
- var carouselContHeight = $("+.acoCont .itemCarousel ul li", this);
83
+ $("+.acoCont .itemCarousel ul li").tile();
84
-
85
- carouselContHeight.tile();
86
84
 
87
85
  ```

1

jsソースの追加

2015/08/25 06:37

投稿

hiro421
hiro421

スコア63

test CHANGED
File without changes
test CHANGED
@@ -17,3 +17,71 @@
17
17
 
18
18
 
19
19
  ご教示何卒よろしくお願いいたします。
20
+
21
+
22
+
23
+ 下記jsのソースになります。
24
+
25
+ tileという関数は上記のtile.jsを読み込ませてあります。
26
+
27
+
28
+
29
+ ```ここに言語を入力
30
+
31
+ $(".acoCont").css("display", "none");
32
+
33
+ $( '.triggerTap' ).on('click', function ()
34
+
35
+ {
36
+
37
+ var carouselCont = $("+.acoCont .itemCarousel", this).children(".owl-carousel");
38
+
39
+ setTimeout(function ()
40
+
41
+ {
42
+
43
+ carouselCont.owlCarousel(
44
+
45
+ {
46
+
47
+ loop : true,
48
+
49
+ nav : true,
50
+
51
+ navigation : true,
52
+
53
+ pagination : false,
54
+
55
+ rewindNav : false,
56
+
57
+ margin : 20,
58
+
59
+ items : 4,
60
+
61
+ });
62
+
63
+ }, 100);
64
+
65
+ if ($("+.acoCont", this).css("display") === "none")
66
+
67
+ {
68
+
69
+ $("+.acoCont", this).slideDown(200);
70
+
71
+ }
72
+
73
+ else
74
+
75
+ {
76
+
77
+ $("+.acoCont", this).slideUp(200);
78
+
79
+ }
80
+
81
+ });
82
+
83
+ var carouselContHeight = $("+.acoCont .itemCarousel ul li", this);
84
+
85
+ carouselContHeight.tile();
86
+
87
+ ```