game-detail.min.js 595 B

1234567891011121314151617181920
  1. require(['config'], function () {
  2. require(['jquery', 'utils', 'swiper'], function ($,utils, Swiper) {
  3. $(function () {
  4. var swiper = new Swiper('.swiper-container', {
  5. spaceBetween: 15,
  6. slidesPerView: 'auto',
  7. freeMode: true
  8. });
  9. $('.TopGameDetail_msg > .btns > a').on('click', function () {
  10. $('#gameDownloadDialog').fadeIn(250)
  11. })
  12. $('#gameDownloadDialog').on('click', function () {
  13. if (window.event.target.className == 'u-FullMask') {
  14. $('#gameDownloadDialog').fadeOut(250)
  15. }
  16. })
  17. })
  18. })
  19. })