42 lines
751 B
HTML
Executable File
42 lines
751 B
HTML
Executable File
<!doctype html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>test</title>
|
|
<style>
|
|
html,
|
|
body {
|
|
height: 100%;
|
|
}
|
|
|
|
#fixed {
|
|
position: fixed;
|
|
bottom: 0;
|
|
left: 20%;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<button id="test">content('hello world')</button>
|
|
<script src="../lib/jquery-1.10.2.js"></script>
|
|
<script src="../dist/dialog.js"></script>
|
|
|
|
<script>
|
|
var d = dialog({
|
|
width: 60,
|
|
height: 60
|
|
});
|
|
|
|
d.show();
|
|
|
|
$('#test').on('click', function() {
|
|
d.width('auto');
|
|
d.height('auto');
|
|
d.content('hello world');
|
|
});
|
|
</script>
|
|
</body>
|
|
|
|
</html> |