mirror of
https://github.com/mdbootstrap/mdb-ui-kit.git
synced 2024-11-13 05:07:01 +03:00
134 lines
4.0 KiB
HTML
134 lines
4.0 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<title>TEST Material Design for Bootstrap</title>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
<!-- Mobile support -->
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<!-- Twitter Bootstrap -->
|
|
<link href="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.5/css/bootstrap.min.css" rel="stylesheet">
|
|
|
|
<!-- Material Design for Bootstrap -->
|
|
<link href="dist/css/roboto.css" rel="stylesheet">
|
|
<link href="dist/css/material-fullpalette.css" rel="stylesheet">
|
|
<link href="dist/css/ripples.css" rel="stylesheet">
|
|
|
|
<!-- Dropdown.js -->
|
|
<link href="//cdn.rawgit.com/FezVrasta/dropdown.js/master/jquery.dropdown.css" rel="stylesheet">
|
|
|
|
<!-- Page style -->
|
|
<link href="index.css" rel="stylesheet">
|
|
|
|
<!-- jQuery -->
|
|
<script src="//code.jquery.com/jquery-1.10.2.min.js"></script>
|
|
|
|
</head>
|
|
<body>
|
|
|
|
<div class="container-fluid">
|
|
|
|
<div class="well bs-component">
|
|
<form class="form-horizontal">
|
|
<fieldset>
|
|
<legend>Legend</legend>
|
|
|
|
<!--<div class="form-group">-->
|
|
<!--<label for="inputFile" class="col-lg-2 control-label">File</label>-->
|
|
|
|
<!--<div class="col-lg-10">-->
|
|
<!--<input type="text" readonly class="form-control floating-label" placeholder="Browse...">-->
|
|
<!--<input type="file" id="inputFile" multiple>-->
|
|
<!--</div>-->
|
|
<!--</div>-->
|
|
|
|
|
|
<div class="form-group">
|
|
<label class="control-label floating-label" for="addon2">Input addons with floating label</label>
|
|
<div class="input-group">
|
|
<span class="input-group-addon">$</span>
|
|
<input type="text" id="addon2" class="form-control">
|
|
<span class="input-group-btn">
|
|
<button class="btn btn-primary" type="button">Button</button>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
|
|
<!--<h2>File inputs</h2>-->
|
|
|
|
<!--<div class="form-group">-->
|
|
<!--<label class="control-label floating-label" for="faddon1">Input group with file</label>-->
|
|
<!--<div class="input-group">-->
|
|
<!--<span class="input-group-addon"><i class="mdi-editor-attach-file"></i></span>-->
|
|
<!--<input type="text" class="form-control" id="faddon1">-->
|
|
<!--</div>-->
|
|
<!--</div>-->
|
|
|
|
|
|
|
|
<!--<div class="form-group">-->
|
|
<!--<label for="f1" class="control-label floating-label">Browse...(floating label)</label>-->
|
|
<!--<input type="file" id="f1" class="form-control">-->
|
|
<!--<p class="help-block">Example block-level help text here.</p>-->
|
|
<!--</div>-->
|
|
|
|
<!--<div class="form-group">-->
|
|
<!--<label for="f2" class="form-control">Browse...(static label)</label>-->
|
|
<!--<input type="file" id="f2" class="form-control">-->
|
|
<!--<p class="help-block">Example block-level help text here.</p>-->
|
|
<!--</div>-->
|
|
</fieldset>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<!-- Twitter Bootstrap -->
|
|
<script src="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.5/js/bootstrap.min.js"></script>
|
|
|
|
<!-- Material Design for Bootstrap -->
|
|
<script src="dist/js/material.js"></script>
|
|
<script src="dist/js/ripples.js"></script>
|
|
<script>
|
|
$.material.init();
|
|
</script>
|
|
|
|
|
|
<!-- Sliders -->
|
|
<!--<script src="//cdnjs.cloudflare.com/ajax/libs/noUiSlider/6.2.0/jquery.nouislider.min.js"></script>-->
|
|
<!--<script>-->
|
|
<!--$(function () {-->
|
|
<!--$.material.init();-->
|
|
<!--$(".shor").noUiSlider({-->
|
|
<!--start: 40,-->
|
|
<!--connect: "lower",-->
|
|
<!--range: {-->
|
|
<!--min: 0,-->
|
|
<!--max: 100-->
|
|
<!--}-->
|
|
<!--});-->
|
|
|
|
<!--$(".svert").noUiSlider({-->
|
|
<!--orientation: "vertical",-->
|
|
<!--start: 40,-->
|
|
<!--connect: "lower",-->
|
|
<!--range: {-->
|
|
<!--min: 0,-->
|
|
<!--max: 100-->
|
|
<!--}-->
|
|
<!--});-->
|
|
<!--});-->
|
|
<!--</script>-->
|
|
|
|
<!-- Dropdown.js -->
|
|
<!--<script src="https://cdn.rawgit.com/FezVrasta/dropdown.js/master/jquery.dropdown.js"></script>-->
|
|
<!--<script>-->
|
|
<!--$("#dropdown-menu select").dropdown();-->
|
|
<!--</script>-->
|
|
|
|
</body>
|
|
</html>
|