2019-03-21 09:57:27 +01:00
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>PIXI Lib Doctests</title>
|
|
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
|
|
|
|
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0, user-scalable=0, minimum-scale=1.0, maximum-scale=1.0" />
|
|
|
|
<link rel="stylesheet" href="../../css/index.css">
|
|
|
|
|
2019-05-22 16:03:19 +02:00
|
|
|
<script src="../../dist/iwmlib.js"></script>
|
2019-03-21 09:57:27 +01:00
|
|
|
|
|
|
|
<template id="itemTemplate">
|
|
|
|
<a class="wrapper" href="">
|
|
|
|
<div class="preview">
|
|
|
|
<div class="thumbnail-container">
|
|
|
|
<div class="thumbnail">
|
2019-05-28 13:54:50 +02:00
|
|
|
<img class="icon" src="thumbnails/notfound.png">
|
2019-03-21 09:57:27 +01:00
|
|
|
<!-- <iframe src="" frameborder="0"></iframe> -->
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="title"></div>
|
|
|
|
</div>
|
|
|
|
</a>
|
|
|
|
</template>
|
|
|
|
</head>
|
|
|
|
<body>
|
2019-05-28 13:54:50 +02:00
|
|
|
<div id="container" class="container">
|
|
|
|
<a style="position: absolute; left: 22px; top: 12px;" target="_blank" href="http://www.iwm-tuebingen.de">IWM</a>
|
|
|
|
</div>
|
2019-03-21 09:57:27 +01:00
|
|
|
<script>
|
|
|
|
const index = new Index(itemTemplate, [
|
|
|
|
['PIXI.Application', 'application.html'],
|
|
|
|
['Application', 'app.html'],
|
|
|
|
['Badge', 'badge.html'],
|
|
|
|
['Button', 'button.html'],
|
|
|
|
['ButtonGroup', 'buttongroup.html'],
|
|
|
|
['Coordinates', 'coordinates.html'],
|
2019-05-23 11:21:46 +02:00
|
|
|
['DeepZoom', 'deepzoom/index.html'],
|
2019-03-21 09:57:27 +01:00
|
|
|
['Flippable', 'flippable.html'],
|
2019-03-28 09:49:21 +01:00
|
|
|
['LabeledGraphics', 'labeledgraphics.html'],
|
2019-03-21 09:57:27 +01:00
|
|
|
['List', 'list.html'],
|
2019-12-09 18:15:28 +01:00
|
|
|
['Maps', 'maps/index.html'],
|
2019-03-21 09:57:27 +01:00
|
|
|
['Message', 'message.html'],
|
|
|
|
['Modal', 'modal.html'],
|
|
|
|
['Tooltip', 'tooltip.html'],
|
|
|
|
['Popover', 'popover.html'],
|
|
|
|
['Popup', 'popup.html'],
|
|
|
|
['PopupMenu', 'popupmenu.html'],
|
|
|
|
['Progress', 'progress.html'],
|
|
|
|
['Slider', 'slider.html'],
|
|
|
|
['Switch', 'switch.html'],
|
|
|
|
['Volatile', 'volatile.html'],
|
|
|
|
['Scatter', 'scatter.html'],
|
|
|
|
['Flip Effect', 'flipeffect.html'],
|
|
|
|
['Blur Filter', 'blurfilter.html'],
|
2019-05-14 11:54:25 +02:00
|
|
|
['Text', 'text.html'],
|
2019-10-09 15:41:16 +02:00
|
|
|
['Text Transform', 'text-transform.html'],
|
2019-09-17 15:14:57 +02:00
|
|
|
['Scrollview', 'scrollview.html'],
|
|
|
|
['Stylus', 'stylus.html']
|
2019-03-21 09:57:27 +01:00
|
|
|
],
|
|
|
|
null)
|
|
|
|
index.load()
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|