You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							44 lines
						
					
					
						
							1.4 KiB
						
					
					
				
			
		
		
	
	
							44 lines
						
					
					
						
							1.4 KiB
						
					
					
				| <!doctype html>
 | |
| <html lang="en">
 | |
| <head>
 | |
| 	<meta charset="utf-8">
 | |
| 	<meta name="viewport" content="width=device-width, initial-scale=1">
 | |
| 	<title>jQuery UI Selectable - Display as grid</title>
 | |
| 	<link rel="stylesheet" href="../../themes/base/all.css">
 | |
| 	<link rel="stylesheet" href="../demos.css">
 | |
| 
 | |
| 	<style>
 | |
| 	#feedback { font-size: 1.4em; }
 | |
| 	#selectable .ui-selecting { background: #FECA40; }
 | |
| 	#selectable .ui-selected { background: #F39814; color: white; }
 | |
| 	#selectable { list-style-type: none; margin: 0; padding: 0; width: 450px; }
 | |
| 	#selectable li { margin: 3px; padding: 1px; float: left; width: 100px; height: 80px; font-size: 4em; text-align: center; }
 | |
| 	</style>
 | |
| 	<script src="../../external/requirejs/require.js"></script>
 | |
| 	<script src="../bootstrap.js">
 | |
| 		$( "#selectable" ).selectable();
 | |
| 	</script>
 | |
| </head>
 | |
| <body>
 | |
| 
 | |
| <ol id="selectable">
 | |
| 	<li class="ui-state-default">1</li>
 | |
| 	<li class="ui-state-default">2</li>
 | |
| 	<li class="ui-state-default">3</li>
 | |
| 	<li class="ui-state-default">4</li>
 | |
| 	<li class="ui-state-default">5</li>
 | |
| 	<li class="ui-state-default">6</li>
 | |
| 	<li class="ui-state-default">7</li>
 | |
| 	<li class="ui-state-default">8</li>
 | |
| 	<li class="ui-state-default">9</li>
 | |
| 	<li class="ui-state-default">10</li>
 | |
| 	<li class="ui-state-default">11</li>
 | |
| 	<li class="ui-state-default">12</li>
 | |
| </ol>
 | |
| 
 | |
| <div class="demo-description">
 | |
| <p>To arrange selectable items as a grid, give them identical dimensions and float them using CSS.</p>
 | |
| </div>
 | |
| </body>
 | |
| </html>
 |