12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- $(function () {
- //轮播图
- let swiper = new Swiper('#swiper1', {
- pagination: {
- el: '.swiper-pagination',
- },
- loop: true, //循环
- observer: true, //修改swiper自己或子元素时,自动初始化swiper
- observeParents: true, //修改swiper的父元素时,自动初始化swiper
- speed: 500,
- autoplay: {
- disableOnInteraction: false, //触碰后自动轮播也不会停止
- delay: 3000,
- },
- })
- $('.index-page .take-out .take-out-body .img-box1 .img-info').hover(
- function () {
- $('.index-page .take-out .take-out-body .img-box1 .take-out-img').fadeToggle()
- $('.index-page .take-out .take-out-body .img-box1').addClass('whiteColor')
- $('.index-page .take-out .take-out-body .img-box1 .img-info p').addClass('whiteColor')
- },
- function () {
- $('.index-page .take-out .take-out-body .img-box1 .take-out-img').fadeToggle()
- $('.index-page .take-out .take-out-body .img-box1').removeClass('whiteColor')
- $('.index-page .take-out .take-out-body .img-box1 .img-info p').removeClass('whiteColor')
- }
- )
- $('.index-page .take-out .take-out-body .img-box2 .img-info').hover(
- function () {
- $('.index-page .take-out .take-out-body .img-box2 .take-out-img').fadeToggle()
- $('.index-page .take-out .take-out-body .img-box2').addClass('whiteColor')
- $('.index-page .take-out .take-out-body .img-box2 .img-info p').addClass('whiteColor')
- },
- function () {
- $('.index-page .take-out .take-out-body .img-box2 .take-out-img').fadeToggle()
- $('.index-page .take-out .take-out-body .img-box2').removeClass('whiteColor')
- $('.index-page .take-out .take-out-body .img-box2 .img-info p').removeClass('whiteColor')
- }
- )
- $('.index-page .take-out .take-out-body .img-box3 .img-info').hover(
- function () {
- $('.index-page .take-out .take-out-body .img-box3 .take-out-img').fadeToggle()
- $('.index-page .take-out .take-out-body .img-box3').addClass('whiteColor')
- $('.index-page .take-out .take-out-body .img-box3 .img-info p').addClass('whiteColor')
- },
- function () {
- $('.index-page .take-out .take-out-body .img-box3 .take-out-img').fadeToggle()
- $('.index-page .take-out .take-out-body .img-box3').removeClass('whiteColor')
- $('.index-page .take-out .take-out-body .img-box3 .img-info p').removeClass('whiteColor')
- }
- )
- $('.index-page .map .select .select-btn').click(function () {
- $('.index-page .map .select .pull-box').fadeToggle()
- })
- })
|