ÿØÿà JFIF H H ÿÛ C ÿÛ Cÿ " ÿÄ ÿÄ ÿÚ ±5¬€ ÿÄ àÿÚ ÿÄ ÀÿÚ ? ÿÄ ÀÿÚ ? ÿÄ àÿÚ ? ÿÄ àÿÚ ?! ÿÚ ÿÄ ÀÿÚ ? ÿÄ ÀÿÚ ? ÿÄ àÿÚ ? ÿÙ
| Server IP : 160.25.81.117 / Your IP : 216.73.216.137 Web Server : Apache/2 System : Linux sv05.hilab.cloud 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64 User : bellizen ( 1045) PHP Version : 7.2.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/bellizen/domains/bellizeno.com/private_html/public/js/ |
Upload File : |
jQuery(function ($) {
$(document).ready(function() {
$('.nav-account').click(function() {
$(".account").toggleClass("visible");
});
});
$(document).ready(function() {
$('.btn-close').click(function() {
$(".banner-close").toggleClass("hidden");
});
});
$(document).ready(function() {
$('.product-menu a').click(function() {
$(".product-menu-abs").toggleClass("hidden");
});
});
$(window).on("scroll", function() {
if($(window).scrollTop() > 150) {
$("header").addClass("active");
} else {
//remove the background property so it comes transparent again (defined in your css)
$("header").removeClass("active");
}
});
//news slider
$('.flower-slider').owlCarousel({
loop:true,
nav: true,
navText: ["<img src='public/images/prev2.png'>","<img src='public/images/next2.png'>"],
autoWidth:false,
autoplay: true,
items:4,
dots: false,
margin: 25,
responsive:{
0:{
items:1,
center:true
},
480:{
items:2
},
678:{
items:3
},
960:{
items:4
},
1200:{
items:5
}
}
});
$('.banner-slider').owlCarousel({
loop:true,
nav: true,
navText: ["<img src='public/images/prev.png'>","<img src='public/images/next.png'>"],
autoWidth:false,
autoplay: true,
items:1,
dots: true,
responsive:{
0:{
items:1,
center:true
},
480:{
items:1
},
678:{
items:1
},
960:{
items:1
}
}
});
$('.parten-slider').owlCarousel({
loop:true,
autoWidth:false,
autoplay: true,
items:1,
dots: true,
responsive:{
0:{
items:1,
center:true
},
480:{
items:1
},
678:{
items:1
},
960:{
items:1
}
}
});
$(function () {
$('.add').on('click',function(){
var $qty=$(this).closest('.action-number').find('.qty');
var currentVal = parseInt($qty.val());
if (!isNaN(currentVal)) {
$qty.val(currentVal + 1);
}
});
$('.minus').on('click',function(){
var $qty=$(this).closest('.action-number').find('.qty');
var currentVal = parseInt($qty.val());
if (!isNaN(currentVal) && currentVal > 0) {
$qty.val(currentVal - 1);
}
});
});
});