This commit is contained in:
Kristján Oddsson 2021-04-13 13:01:24 +01:00
Родитель 6ab566e1b7
Коммит 867ae38164
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: F5C58CF9F8FE5D63
1 изменённых файлов: 15 добавлений и 12 удалений

Просмотреть файл

@ -1,15 +1,18 @@
<!doctype html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>custom-element demo</title>
</head>
<body>
<custom-element></custom-element>
<head>
<meta charset="utf-8" />
<title>typing-effect demo</title>
</head>
<body>
<typing-effect data-lines='["Welcome to GitHub!", "Lets begin the adventure"]'>
<span data-target="typing-effect.content"></span>
<span data-target="typing-effect.cursor">|</span>
</typing-effect>
<script type="module">
// import 'https://unpkg.com/@github/custom-element-boilerplate@latest/dist/index.js'
import '../dist/index.js'
</script>
</body>
<script type="module">
import 'https://unpkg.com/@github/typing-effect@latest/dist/index.js'
//import '../dist/index.js'
</script>
</body>
</html>