activator-oce-exporter
Version:
Extract Activator binder and convert it to valid OCE mono pacakge
39 lines (37 loc) • 1.78 kB
HTML
<html><head>
<meta charset="utf-8">
<title>Component Demo</title>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1">
<link href="../../../../dist/main.css" rel="stylesheet">
<style>
body {
margin:0;
}
</style>
<!-- load the webcomponents loader, which injects the necessary polyfill bundle -->
<script src="../../../../lib/@webcomponents/webcomponentsjs/webcomponents-loader.js"></script>
</head>
<body>
<fusion-presentation id="demoPresentation" width="1024px" height="768px" background-color="#333" orientation="horizontal">
<fusion-slide width="1024px" height="768px" id="s1" background-color="rgb(234, 11, 218)">
<h1>Slide 1</h1>
<fusion-popup id="pop1">
<h1>A popup on slide 1</h1>
</fusion-popup>
<fusion-button width="150px" height="50px" id="openPopup" round-type="Rectangular" style-type="Primary" custom-color="rgba(0, 123, 255, 1)" custom-text-color="rgba(255, 255, 255, 1)">Open Popup</fusion-button>
<fusion-action if="click" on="#openPopup" do="$applyState" state="Popup-pop1"></fusion-action>
</fusion-slide>
<fusion-slide width="1024px" height="768px" id="s2" background-color="teal">
<h1>Slide 3</h1>
<fusion-popup id="pop3" backdrop>
<h1>A popup on slide 3</h1>
</fusion-popup>
<fusion-button id="openPopup2" style-type="Error">Open Popup</fusion-button>
<fusion-action if="click" on="#openPopup2" do="$applyState" state="Popup-pop3"></fusion-action>
</fusion-slide>
<fusion-slide width="1024px" height="768px" id="s3" background-color="rgba(0, 0, 0, 1)" text-color="white">
<h1>Slide 2</h1>
</fusion-slide>
</fusion-presentation>
<script src="../../../../dist/main.js"></script>
</body></html>