59 lines
1.9 KiB
HTML
59 lines
1.9 KiB
HTML
|
<!doctype html>
|
||
|
<!--[if IE 9]><html class="lt-ie10" lang="en" dir="rtl"> <![endif]-->
|
||
|
<html class="no-js" lang="en" dir="rtl">
|
||
|
|
||
|
<head>
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
|
||
|
<link href="http://cdnjs.cloudflare.com/ajax/libs/foundicons/3.0.0/foundation-icons.css" rel="stylesheet">
|
||
|
|
||
|
<link href="../assets/css/foundation-rtl.css" rel="stylesheet" />
|
||
|
|
||
|
<style>
|
||
|
|
||
|
|
||
|
</style>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<div class="grid-container">
|
||
|
<div class="grid-x grid-padding-x">
|
||
|
<div class="cell">
|
||
|
<h1>Dropdown: RTL</h1>
|
||
|
|
||
|
<p>Bottom aligned:</p>
|
||
|
|
||
|
<button class="button" type="button" data-toggle="example-dropdown">Toggle Dropdown</button>
|
||
|
<div class="dropdown-pane" id="example-dropdown" data-dropdown data-auto-focus="true">
|
||
|
<p>This is a dropdown.</p>
|
||
|
</div>
|
||
|
|
||
|
|
||
|
<button class="button" type="button" data-toggle="example-dropdown-1">Hoverable Dropdown</button>
|
||
|
<div class="dropdown-pane" id="example-dropdown-1" data-dropdown data-hover="true" data-hover-pane="true">
|
||
|
<p>This is a dropdown.</p>
|
||
|
</div>
|
||
|
|
||
|
<p>Top aligned:</p>
|
||
|
|
||
|
<button class="button" type="button" data-toggle="example-dropdown-2">Toggle Dropdown</button>
|
||
|
<div class="dropdown-pane top" id="example-dropdown-2" data-dropdown data-auto-focus="true">
|
||
|
<p>This is a dropdown.</p>
|
||
|
</div>
|
||
|
|
||
|
|
||
|
<button class="button" type="button" data-toggle="example-dropdown-3">Hoverable Dropdown</button>
|
||
|
<div class="dropdown-pane top" id="example-dropdown-3" data-dropdown data-hover="true" data-hover-pane="true">
|
||
|
<p>This is a dropdown.</p>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<script src="../assets/js/vendor.js"></script>
|
||
|
<script src="../assets/js/foundation.js"></script>
|
||
|
<script>
|
||
|
$(document).foundation();
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|