/
githubmirror
/
fullPage.js
Обзор
Документация
Войти
/
githubmirror
/
fullPage.js
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
examples/module_loaders/browserify-example/dist/index.html
29 строк
763 B
Alvaro Trigo López
- Updating module loaders examples (extensions & scrollOverflow)
25 сен 2018, 17:03
25 сен 2018, 17:03
40282eb
Код
Авторство
О чём код?
<!doctype html> <html> <head> <title>Browserify example for fullPage.js</title> <link rel="stylesheet" type="text/css" href="../node_modules/fullpage.js/dist/fullpage.min.css" /> <style type="text/css"> .section{ font-size: 3.5em; font-family: arial; color: #fff; text-align: center; } </style> </head> <body> <div id="myFullpage"> <div class="section">Section 1</div> <div class="section"> <div class="slide">Slide 2.1</div> <div class="slide">Slide 2.2</div> <div class="slide">Slide 2.3</div> </div> <div class="section">Section 3</div> </div> <script src="main.js"></script> </body> </html>