/
githubmirror
/
impress.js
Обзор
Документация
Войти
/
githubmirror
/
impress.js
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/core_tests_presentation.html
23 строки
998 B
Henrik Ingo
Remove outdated comment about copying syn.js into repo. No longer the case.
25 фев 2018, 14:12
25 фев 2018, 14:12
2a3dd7e
Код
Авторство
О чём код?
<!DOCTYPE html> <!-- Copyright 2016 Henrik Ingo (@henrikingo) Released under the MIT license. See LICENSE file. --> <html> <head> <meta charset="utf-8"> <title>The presentation steps used in an iframe in core_tests.js</title> </head> <!-- id is used by syn --> <body class="impress-not-supported" id="bodyid"> <div id="impress"> <div class="step" data-x="-1000" data-y="0">First slide</div> <div class="step" data-x="-800" data-y="0">Second slide <br /><a href="#fourth" id="linktofourth">link to fourth slide</a></div> <div class="step" data-x="-600" data-y="0">Third slide<br /><a href="#step-1" id="linktofirst">link to first slide</a></div> <div class="step" id="fourth" data-x="-400" data-y="0">Fourth slide</div> </div> <script src="../js/impress.js"></script> <!-- See http://bitovi.com/blog/2010/07/syn-a-standalone-synthetic-event-library.html for simple usage guide. --> <script src="../node_modules/syn/dist/global/syn.js"></script> </body> </html>