123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- $(function(){
-
- PublicAction.AjaxSend(
- {
- CORID:'wa_submit',
- }
- );
-
- $('.beg-cls').on('click',function(){
- $('.beg-box').hide(function(){
- $('.beg').hide(function(){
- $('.beg-box input[name="hid"]').val('0');
- })
- })
- })
- $('.indebtn').on('click',function(){
- var oid = $(this).attr('data-id');
- $('.beg-box input[name="hid"]').val(oid);
- $('.beg').show(function(){
- $('.beg-box').show(function(){})
- })
- })
- })
- new Swiper('.m_fxs', {
- loop : true,
- spaceBetween: 10,
- centeredSlides: true,
- slidesPerView: 'auto',
- touchRatio: 0.5,
- slideToClickedSlide: true,
- pagination: '.swiper-pagination',
- });
- new Swiper('.m_fxss', {
- loop : true,
- spaceBetween: 10,
- centeredSlides: true,
- slidesPerView: 'auto',
- touchRatio: 0.5,
- slideToClickedSlide: true,
- pagination: '.swiper-pagination',
- });
- jQuery(".phmarani_x3_bottom").slide({
- mainCell:".bd ul",
- autoPlay:true,
- effect:"topMarquee",
- vis:1,
- interTime:80,
- trigger:"click",
- });
- $('.m_video_img').on('click',function(){
- var that = $(this);
- var oid = that.siblings('video.m_video_sp').attr('id');
- var _video = document.getElementById(oid);
- _video.play();
- that.siblings('video.m_video_sp').attr('controls','controls');
- that.hide();
- })
- $('.mzxbox_title span').on('click',function(){
- var _dataid =$(this).attr('dataid');
- $('.mzxbox .mzx').hide();
- $('.mzxbox .mzx[dataid="'+_dataid+'"]').show();
- $(this).attr('class','on').siblings().attr('class','');
- })
- $('.mzxbox_title span').eq(0).click();
|