8f340aa7
Anastasia
- main page
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
$(document).ready(function() {
footerBottom();
modalForms();
openMobMenuNew();
closeMobMenu();
canvasFunction();
scrollToForm();
cardHideDesk();
inputNumber();
phoneMask();
function footerBottom(){
var heightHeader = document.getElementById('header_').offsetHeight
var heightFooter = document.getElementById('footer_').offsetHeight
var windowHeight = window.innerHeight
|
d524f25a
Виталий
about
|
18
|
document.getElementById('content_').style.minHeight = windowHeight-heightHeader-heightFooter-60+'px';
|
8f340aa7
Anastasia
- main page
|
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
}
function mobOverlayAdd() {
if($('body').find('.mob-overlay').length > 0) {
} else {
$('body').append('<div class="mob-overlay"></div>')
}
$('.mob-overlay').fadeIn(300);
}
function mobOverlayRemove() {
$('.mob-overlay').fadeOut(300);
$('body').removeClass('show-block-mobile');
setTimeout(function () {
$('body').removeClass('body-fixed');
},510)
}
function openMobMenuNew() {
$('.menu_mob').click(function () {
mobOverlayAdd()
$('body').addClass('body-fixed show-block-mobile');
})
}
function closeCallMobileHide() {
$('.call-mobile-wr').removeClass('visible')
setTimeout(function () {
$('.call-mobile-wr').removeClass('open')
},200)
}
function closeMobMenu() {
$('body').on('click','.mob-overlay',function () {
mobOverlayRemove();
})
$('.close-mobile-menu').click(function () {
mobOverlayRemove();
})
}
function canvasFunction() {
var percentBl = $(".percent-bl");
for (i=0; i < percentBl.length; i++){
var width = (typeof $(percentBl[i]).attr("data-width") != 'undefined') ? Math.round($(percentBl[i]).attr("data-width")) : 80;
var procent = (Number($(percentBl[i]).html()) > 0 && Number($(percentBl[i]).html()) < 100) ? Math.round(Number($(percentBl[i]).html()) * 10)/10 : 0;
var lineWidth = (typeof $(percentBl[i]).attr("data-lineWidth") != 'undefined') ? Number($(percentBl[i]).attr("data-lineWidth")) : width / 10;
var size = width+lineWidth;
var lineRound = (typeof $(percentBl[i]).attr("data-lineRound") != 'undefined') ? true : false;
var borderColor = "#ccc"
var color = $(percentBl[i]).css("color");
$(percentBl[i]).css({"width": size + 'px', "height": size + 'px', "font-size": Math.floor((width-lineWidth) / 4) + 'px'});
$(percentBl[i]).html('<canvas id="dial' + i + '" width="' + size + '" height="' + size + '"></canvas><p>' + procent + '%</p>');
$("p", percentBl[i]).css({"line-height": size + 'px'});
var canvas = document.getElementById("dial" + i);
var context = canvas.getContext("2d");
var radian = 2*Math.PI*procent/100;
context.arc(width/2+lineWidth/2, width/2+lineWidth/2, width/2, 0, 2*Math.PI, false);
context.lineWidth = lineWidth;
context.strokeStyle = borderColor;
context.stroke();
context.beginPath();
context.arc(width/2+lineWidth/2, width/2+lineWidth/2, width/2, 1.5 * Math.PI, radian+1.5 * Math.PI, false);
context.strokeStyle = color;
if (lineRound == true && lineWidth < width) context.lineCap = "round";
context.stroke();
}
}
function scrollToForm() {
$('body').on('click','.answers-wr span', function () {
|
95f0b726
Anastasia
- comment answer ...
|
95
|
$("#answer-form").find('.field-comment-parent_id').find("#comment-parent_id").val($(this).data('id'));
|
8f340aa7
Anastasia
- main page
|
96
97
98
99
|
var block = $('.hidden-comments-form-card');
block.addClass('vis_');
$('body, html').animate({scrollTop:block.offset().top - 36},500)
|
e47109b0
Anastasia
- support
|
100
101
102
103
104
105
|
});
// $('body').on('click','.hidden-comments-form-card button', function () {
// $('.hidden-comments-form-card').removeClass('vis_');
//
// alert('thiiiis')
// })
|
8f340aa7
Anastasia
- main page
|
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
|
}
function cardHideDesk() {
$('body').on('click','.mob-card-desk-btn span', function () {
var hideText = $(this).parent().data('hide');
var showText = $(this).parent().data('show');
if($('.card-desk-text').hasClass('show_')){
$('.card-desk-text').removeClass('show_');
$(this).html(showText);
} else {
$('.card-desk-text').addClass('show_');
$(this).html(hideText);
}
})
}
function inputNumber() {
$(document).on('keypress', '.price-input input', function (e) {
if (!(e.which == 8 || (e.which > 47 && e.which < 58))) {
return false;
}
});
}
function phoneMask() {
var phoneInput = '.phones_mask input';
if($('body').find('.phones_mask').find('input').length>0){
$(phoneInput).mask('(000) 000-00-00');
$(phoneInput).focus(function () {
var text = $(this).val();
$(this).val(text);
if(($(this).val())== '') {$(this).val('(0')}
});
$(phoneInput).focusout(function () {
var phoneVal = $(this).val();
if(phoneVal.length <15) {$(this).val('')}
})
|
0060a4ca
Anastasia
first commit
|
148
149
|
}
}
|
8f340aa7
Anastasia
- main page
|
150
|
|
8f340aa7
Anastasia
- main page
|
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
|
$(window).resize(function () {
// heightSliderCol();
footerBottom();
if(window.innerWidth>=992){
mobOverlayRemove()
$('#menu-mob-hidden').removeClass('visible')
setTimeout(function () {
$('#menu-mob-hidden').removeClass('opens')
},200)
$('body').removeClass('off-scroll')
$('body').removeClass('hidden_scroll-y')
$('.mob_filters_wr').attr('style','')
}
})
function modalForms() {
$('body').on('click','.modal-link', function (e) {
e.preventDefault();
e.stopPropagation();
mobOverlayRemove()
$('#menu-mob-hidden').removeClass('visible')
setTimeout(function () {
$('#menu-mob-hidden').removeClass('opens')
},200)
$('body').removeClass('off-scroll')
mobOverlayRemove()
closeCallMobileHide()
$('.btn_call').removeClass('close')
$('.call-mobile-wr').removeClass('open')
$('body').removeClass('off-scroll')
var idForm = $(this).data('form');
var pos = ($(window).scrollTop()) + 30;
if($(this).hasClass('fixed-modal')){
pos = 30;
$('#'+idForm).css({position:'fixed'})
}
if($(this).hasClass('pos-top')){
pos = 30;
}
$('#overlay').removeClass('overlay_cloned');
$('#overlay').fadeIn(400,
function(){
$('#'+idForm)
.css('display', 'block')
.animate({opacity: 1, top: pos}, 200);
});
})
}
closeForms();
function closeForms() {
$('#modal_close, #overlay').click( function(){
$('.forms_').animate({opacity: 0, top: '0'}, 200,function(){
$(this).css('display', 'none');
$(this).prev("#overlay").css('display', 'none');
$('#overlay').fadeOut(400);
});
$('#success_form').animate({opacity: 0, top: '0'}, 200,function(){
$(this).css('display', 'none');
$(this).prev("#overlay").css('display', 'none');
$(this).css({top:'50%'});
});
});
}
//после удачной отправки формы запускать success()
// success()
|
e47109b0
Anastasia
- support
|
225
226
227
228
229
230
231
232
233
234
235
236
|
// function success(message) {
// var pos = ($(window).scrollTop()) + 30;
// $('.forms_').animate({opacity: 0, top: '0'}, 200,function(){
// $(this).css('display', 'none');
// });
// setTimeout(function () {
// $('#overlay').fadeIn(400);
// $('#success_form').find('.txt-success').html(message);
// $('#success_form').css('display', 'block').animate({opacity: 1, top: pos}, 700);
// },400)
// }
|
9afd152f
Anastasia
- support from main
|
237
238
239
240
241
242
243
|
$(document).on('beforeSubmit', '#search-form', function(e) {
if ($("#next").data('id') != ''){
console.log('ololo');
window.location.replace('/support/index?book_id='+$("#next").data('id'));
return false;
}
});
|
e47109b0
Anastasia
- support
|
244
245
246
247
248
249
250
251
252
253
254
255
256
|
});
function success(message) {
document.querySelector('#success_form .txt-success').innerHTML = message;
var pos = ($(window)
.scrollTop()) + 30 + 60;
$('.forms_')
.animate({
opacity: 0,
top: '0'
}, 200, function() {
$(this)
.css('display', 'none');
|
8f340aa7
Anastasia
- main page
|
257
|
});
|
e47109b0
Anastasia
- support
|
258
259
260
261
262
263
264
265
266
267
268
269
|
setTimeout(function() {
$('#overlay')
.fadeIn(400, function() {
$('#success_form')
.css('display', 'block')
.animate({
opacity: 1,
top: pos
}, 700);
});
}, 400)
}
|
8f340aa7
Anastasia
- main page
|
270
|
|
e47109b0
Anastasia
- support
|
271
|
window.success = success;
|
8f340aa7
Anastasia
- main page
|
|
|