0

我希望任何人都熟悉Reveal.js,这是一个了不起的演示文稿/幻灯片。它非常简单,但使用我的 jQuery 导航功能,链接将不起作用。如果我删除 jQuery 函数,幻灯片部分会被正确调用。

我错过了什么?

navigation: function () {

var $items;
items = $('.items a.see-all');
items.on('click', function (e) {


e.preventDefault(); 

$('.wrap-content').css({
     opacity: 0,
    'z-index': -1
  });
$('.wrap-section').css({
     opacity: 1,
     'z-index': 1
   }); 
});

},
4

1 回答 1

0

核实 :

navigation: function () {

$('.items a.see-all').on('click', function (e) {


e.preventDefault(); 

$('.wrap-content').css({
     'opacity': 0,
    'z-index': -1
  });
$('.wrap-section').css({
     'opacity': 1,
     'z-index': 1
   }); 
});

},
于 2013-11-26T13:25:34.790 回答