79 lines
2.5 KiB
HTML
79 lines
2.5 KiB
HTML
|
|
<!DOCTYPE html>
|
|||
|
|
<html lang="en">
|
|||
|
|
<head>
|
|||
|
|
<!--[if lt IE 9]>
|
|||
|
|
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
|
|||
|
|
<![endif]-->
|
|||
|
|
<meta charset="utf-8">
|
|||
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|||
|
|
<title>Float grid demo</title>
|
|||
|
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
|
|||
|
|
<link rel="stylesheet" href="gridstack.css" />
|
|||
|
|
<script src="jquery-1.11.2.min.js"></script>
|
|||
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.11.0/jquery-ui.js"></script>
|
|||
|
|
<script src="/BiManage/CSS/bootstrap3.3.5/js/bootstrap.js"></script>
|
|||
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.0/lodash.min.js"></script>
|
|||
|
|
<script src="gridstack.js"></script>
|
|||
|
|
<script src="gridstack.jQueryUI.js"></script>
|
|||
|
|
<style type="text/css">
|
|||
|
|
|
|||
|
|
.grid-stack {
|
|||
|
|
background: lightgoldenrodyellow;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.grid-stack-item-content {
|
|||
|
|
color: #2c3e50;
|
|||
|
|
text-align: center;
|
|||
|
|
background-color: #18bc9c;
|
|||
|
|
}
|
|||
|
|
</style>
|
|||
|
|
</head>
|
|||
|
|
<body>
|
|||
|
|
<div class="container-fluid">
|
|||
|
|
<h1>Float grid demo</h1>
|
|||
|
|
|
|||
|
|
<div>
|
|||
|
|
<a class="btn btn-default" id="add-new-widget" href="#">Add Widget</a>
|
|||
|
|
</div>
|
|||
|
|
|
|||
|
|
<br/>
|
|||
|
|
|
|||
|
|
<div class="grid-stack">
|
|||
|
|
</div>
|
|||
|
|
</div>
|
|||
|
|
|
|||
|
|
|
|||
|
|
<script type="text/javascript">
|
|||
|
|
$(function () {
|
|||
|
|
var options = {
|
|||
|
|
float: true
|
|||
|
|
};
|
|||
|
|
$('.grid-stack').gridstack(options);
|
|||
|
|
|
|||
|
|
new function () {
|
|||
|
|
this.items = [
|
|||
|
|
|
|||
|
|
];
|
|||
|
|
|
|||
|
|
this.grid = $('.grid-stack').data('gridstack');
|
|||
|
|
|
|||
|
|
this.addNewWidget = function () {
|
|||
|
|
var node = this.items.pop() || {
|
|||
|
|
x: 12 * Math.random(),
|
|||
|
|
y: 5 * Math.random(),
|
|||
|
|
width: 1 + 3 * Math.random(),
|
|||
|
|
height: 1 + 3 * Math.random()
|
|||
|
|
};
|
|||
|
|
this.grid.addWidget($('<div><div class="grid-stack-item-content" /><div/>'),
|
|||
|
|
node.x, node.y, node.width, node.height);
|
|||
|
|
return false;
|
|||
|
|
}.bind(this);
|
|||
|
|
|
|||
|
|
$('#add-new-widget').click(this.addNewWidget);
|
|||
|
|
};
|
|||
|
|
});
|
|||
|
|
</script>
|
|||
|
|
</body>
|
|||
|
|
</html>
|