1234567891011121314151617181920 |
- require(['config'], function () {
- require(['jquery', 'utils', 'swiper'], function ($,utils, Swiper) {
- $(function () {
- var swiper = new Swiper('.swiper-container', {
- spaceBetween: 15,
- slidesPerView: 'auto',
- freeMode: true
- });
-
- $('.TopGameDetail_msg > .btns > a').on('click', function () {
- $('#gameDownloadDialog').fadeIn(250)
- })
- $('#gameDownloadDialog').on('click', function () {
- if (window.event.target.className == 'u-FullMask') {
- $('#gameDownloadDialog').fadeOut(250)
- }
- })
- })
- })
- })
|