最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to disable peel (hover effect) in turn.js? - Stack Overflow

programmeradmin0浏览0评论

I don't want the hover animation in turn.js. Have tried this:

$('#flipbook').turn({
    width: 400,
    height: 300,
});

$('#flipbook').turn('peel', false);​

Any kind of help will be greatly appreciated.

I don't want the hover animation in turn.js. Have tried this:

$('#flipbook').turn({
    width: 400,
    height: 300,
});

$('#flipbook').turn('peel', false);​

Any kind of help will be greatly appreciated.

Share Improve this question edited Dec 30, 2012 at 19:00 Matt Zeunert 16.6k7 gold badges56 silver badges83 bronze badges asked Dec 30, 2012 at 18:43 Pranav BallaneyPranav Ballaney 3151 gold badge7 silver badges13 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 9

I used this:

flipbook.bind('start', 
    function (event, pageObject, corner)
    {
        if (corner == 'tl' || corner == 'tr' || corner == 'bl' || corner == 'br')
        {
            event.preventDefault();
        }
    }
);

Now, it never shows the peel effect :-)

  corners = {
    backward: [],
    forward: [],
    all: []
  },

This should solve your problem.

发布评论

评论列表(0)

  1. 暂无评论