だから私はスライドショープレゼンテーションツールを実行しようとしています.次のコードはスライドショーを初期化することを想定しています.コードはスライドショーを開始するだけです。コードは次のとおりです。
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)
});
悟りを待っています。ありがとう。