Created
February 6, 2014 08:05
-
-
Save mach3/8840065 to your computer and use it in GitHub Desktop.
Test jQuery.EqualRowHeights
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html lang="ja"> | |
<head> | |
<meta charset="utf-8"> | |
<title></title> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<script src="./jquery-1.10.2.min.js"></script> | |
<script src="../dest/jquery.equalrowheights.js"></script> | |
<script> | |
$(function() { | |
var equalrowheights = new $.EqualRowHeights(); | |
}); | |
</script> | |
<style> | |
.list { | |
overflow: hidden; | |
list-style: none; | |
padding:0; | |
margin-left: -15px; | |
} | |
.list li { | |
float: left; | |
width:300px; | |
margin-left: 15px; | |
margin-bottom: 10px; | |
background-color: tomato; | |
} | |
.box { | |
display: inline-block; | |
width: 200px; | |
padding: 10px; | |
margin-right: 10px; | |
vertical-align: top; | |
background-color: gray; | |
} | |
.box-header { | |
padding: 10px; | |
margin-bottom: 10px; | |
background-color: tomato; | |
} | |
.box-footer { | |
padding: 10px; | |
background-color: lime; | |
} | |
.p0 { | |
padding: 0px; | |
} | |
.p20 { | |
padding: 20px; | |
} | |
button { | |
padding: 10px; | |
font-size: 14px; | |
} | |
</style> | |
</head> | |
<body> | |
<h1>demo1</h1> | |
equal row heights. | |
<hr> | |
<button class="btn1">reset heights</button> | |
<button class="btn2">set heights (sorry. this command isn't in good running order.)</button> | |
<hr> | |
<ul class="list"> | |
<li class="js-equalrowheights"> | |
The quick brown fox jumps over the lazy dog. | |
The quick brown fox jumps over the lazy dog. | |
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Nulla, ipsum placeat animi atque quaerat dicta debitis odit incidunt dolor ipsa quidem unde earum commodi quasi perspiciatis molestias aperiam mollitia quisquam. | |
</li> | |
<li class="js-equalrowheights"> | |
The quick brown fox jumps over the lazy dog. | |
</li> | |
<li class="js-equalrowheights"> | |
The quick | |
</li> | |
<li class="js-equalrowheights"> | |
The quick | |
</li> | |
<li class="js-equalrowheights"> | |
The quick brown fox jumps over the lazy dog. | |
</li> | |
<li class="js-equalrowheights"> | |
The quick | |
The quick brown fox jumps over the lazy dog. | |
</li> | |
<li class="js-equalrowheights"> | |
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Nam, illo, hic, nobis necessitatibus dolore iure amet dolores suscipit dolor sequi dolorum ipsum laboriosam facere eum itaque dignissimos quidem impedit atque. | |
The quick | |
</li> | |
</ul> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment