1

ここに表示されている方法と同様に turn.js をセットアップしました: http://demo.tutorialzine.com/2012/03/instagram-magazine-php-jquery/

ページが読み込まれるとすぐに、最初のページの右上隅をその上に置いたかのように曲げたいと思います。

私はJSが初めてなので、https://github.com/blasten/turn.js/wiki/Referenceを見て、ワイルドな推測をして、これを書きました

document.getElementById('magazine').onload = function() 
{    
    $('#magazine').turn('tr', 1);
}

もちろん、これは私を当惑させる以外には何もしません。何か案は?ありがとうございました。

4

2 に答える 2

1

This is how you would set an option:

$(function() 
{    
    $('#magazine').turn({ tr : 1 });
});

sadly tr is not an option so it won't help. I don't believe there is an option to do what you want to do.

于 2012-07-27T23:40:37.357 に答える