在均衡高度的小脚本上将 jquery 转换为 mootools
我有一个小脚本,可以使框的高度相等,我一直在 jQuery 中使用它,我需要将其转换为网站的 mootools。 在此示例中,框将与样式表一起向左浮动三分之一。
<div id="box1" class="equals">content here</div>
<div id="box2" class="equals">content here</div>
<div id="box3" class="equals">content here</div>
jQuery(document).ready(function(){
var highestCol = Math.max(jQuery('#box1').height(),jQuery('#box2').height(),jQuery('#box3').height());
jQuery('.equals').height(highestCol);
});
i have this small script that makes boxes equal heights that i use all the time in jQuery that i need to convert to mootools for a site.
in this example the boxes would be floated left at thirds with style sheets.
<div id="box1" class="equals">content here</div>
<div id="box2" class="equals">content here</div>
<div id="box3" class="equals">content here</div>
jQuery(document).ready(function(){
var highestCol = Math.max(jQuery('#box1').height(),jQuery('#box2').height(),jQuery('#box3').height());
jQuery('.equals').height(highestCol);
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
可能更好地使其模块化和可重用:
http://jsfiddle.net/dimitar/TxtBQ/
probably better to make it modular and reusable:
http://jsfiddle.net/dimitar/TxtBQ/
有一个插件可以均衡高度/宽度,设置是否应调整为最大/最小元素: http:// jsfiddle.net/oskar/5uQEP/
用法非常简单:
您还可以返回原始值并执行一些动画:
There's a plugin that can equalize height/width, set if it should resize to the biggest/smallest element: http://jsfiddle.net/oskar/5uQEP/
Pretty simple usage:
You can also return the raw value and do some animation: