-3

だから私はスライドショープレゼンテーションツールを実行しようとしています.次のコードはスライドショーを初期化することを想定しています.コードはスライドショーを開始するだけです。コードは次のとおりです。

Reveal.initialize({
    // Display controls in the bottom  right corner
    controls: true,
    // Display a presentation progress bar
    progress: false,
    // Click above progress bar for quick  navigation - only works if progress is true
    progressNavigation: true,
    // If true; each slide will be pushed  to the browser history
    history: false,
    // Flags if mouse wheel navigation  should be enabled
    mouseWheel: true,
    // Apply a 3D roll to links on hover
    rollingLinks: true,
    // UI style
    theme: query.theme || 'default', //  default/neon
    // Transition style
    transition: query.transition || 'concave' // default/cube/page/concave/linear(2d)
});

悟りを待っています。ありがとう。

4

1 に答える 1

0

これは頭​​に浮かぶ

               <link rel="stylesheet" href="reveal.css">

               /* jQuery needs to be attached */
               <script src="jquery.min.js" type="text/javascript"></script>

               /* Then just attach the Reveal plugin */
               <script src="jquery.reveal.js" type="text/javascript"></script>

そして明らかに、あなたはそれらのそれぞれをダウンロードしてあなたのプロジェクトに入れる必要があります-ウェブサイトにはダウンロードと言うリンクがあります、それはあなたがそれを得るところです

于 2012-07-19T20:55:43.047 に答える