|
@@ -25,6 +25,15 @@ function setDetailText() { |
|
@@ -25,6 +25,15 @@ function setDetailText() { |
25
|
});
|
25
|
});
|
26
|
}
|
26
|
}
|
27
|
|
27
|
|
|
|
28
|
+function setDefaultHeight() {
|
|
|
29
|
+ var $detailImg = $('.good-detail-img');
|
|
|
30
|
+
|
|
|
31
|
+ $detailImg.css({
|
|
|
32
|
+ height: $detailImg.find('img').height() - 1,
|
|
|
33
|
+ background: '#c3c3c3'
|
|
|
34
|
+ });
|
|
|
35
|
+}
|
|
|
36
|
+
|
28
|
setDetailText();
|
37
|
setDetailText();
|
29
|
|
38
|
|
30
|
$('.detail-tab span').on('click', function() {
|
39
|
$('.detail-tab span').on('click', function() {
|
|
@@ -33,9 +42,19 @@ $('.detail-tab span').on('click', function() { |
|
@@ -33,9 +42,19 @@ $('.detail-tab span').on('click', function() { |
33
|
|
42
|
|
34
|
if ($(this).index() === 1) {
|
43
|
if ($(this).index() === 1) {
|
35
|
setDetailText();
|
44
|
setDetailText();
|
|
|
45
|
+ lazyLoad($('img.lazy'));
|
|
|
46
|
+
|
|
|
47
|
+ setTimeout(function() {
|
|
|
48
|
+ setDefaultHeight();
|
|
|
49
|
+ }, 2000);
|
36
|
}
|
50
|
}
|
37
|
});
|
51
|
});
|
38
|
|
52
|
|
|
|
53
|
+setTimeout(function() {
|
|
|
54
|
+ setDefaultHeight();
|
|
|
55
|
+}, 2500);
|
|
|
56
|
+
|
|
|
57
|
+
|
39
|
window.setCookie('installmentUid', window.queryString.uid);
|
58
|
window.setCookie('installmentUid', window.queryString.uid);
|
40
|
window.setCookie('udid', window.queryString.udid);
|
59
|
window.setCookie('udid', window.queryString.udid);
|
41
|
window.setCookie('clientType', window.queryString.client_type); |
60
|
window.setCookie('clientType', window.queryString.client_type); |