- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在使用 Zurb Foundation 来制作我的网站。我正在使用定价表来定义所有产品。这些图像将所有定价表抛到不同的高度。这是页面:http://codywd.x10.mx/supracing/products.html
为了解决这个问题,我找到了一个可以工作的 jQuery 脚本,但不是我需要的方式。
这是jQuery
<script>
var currentTallest = 0,
currentRowStart = 0,
rowDivs = new Array(),
$el,
topPosition = 0;
$('.pricing-table').each(function() {
$el = $(this);
topPostion = $el.position().top;
if (currentRowStart != topPostion) {
// we just came to a new row. Set all the heights on the completed row
for (currentDiv = 0 ; currentDiv < rowDivs.length ; currentDiv++) {
rowDivs[currentDiv].height(currentTallest);
}
// set the variables for the new row
rowDivs.length = 0; // empty the array
currentRowStart = topPostion;
currentTallest = $el.height();
rowDivs.push($el);
} else {
// another div on the current row. Add it to the list and check if it's taller
rowDivs.push($el);
currentTallest = (currentTallest < $el.height()) ? ($el.height()) : (currentTallest);
}
// do the last row
for (currentDiv = 0 ; currentDiv < rowDivs.length ; currentDiv++) {
rowDivs[currentDiv].height(currentTallest);
}
});
</script>
它在每个定价表的末尾添加了一个白色 block (请参见此处:http://i.imgur.com/oJm2jsc.png)我已经使用基础附带的内置均衡器包对此进行了测试,它做的事情完全相同。
如何让它在描述 li 而不是每个 ul 的末尾添加一个白色 block ?
如果您也需要,这里有一些示例定价表:
<div class="large-8 columns">
<div class="row">
<div class="large-4 small-6 columns">
<ul class="pricing-table">
<li class="title">SUP Racing T-Shirts</li>
<li class="bullet-item"><img src="img/product-imgs/SUP_Tees.jpg"></li>
<li class="description">Show your SUP Racing Pride!</li>
<li class="price">$18.00 + S&H</li>
</ul>
</div>
<div class="large-4 small-6 columns">
<ul class="pricing-table">
<li class="title">SUP Porting for CR/500</li>
<li class="bullet-item"><img src="img/product-imgs/SUP_Porting.jpg"></li>
<li class="description">Great power and torque throughout the entire power band.</li>
<li class="price">$395.00 + S&H</li>
</ul>
</div>
<div class="large-4 small-6 columns">
<ul class="pricing-table">
<li class="title">SUP Pipe for CR/500</li>
<li class="bullet-item"><img src="img/product-imgs/SUP_Pipe1.jpg"></li>
<li class="description">Our custom-designed pipe will give you better torque, and more useable power at a lower R.P.M.
This price includes ceramic coating, silencer, flange, and front and rear mounts.</li>
<li class="price">$654.00 + S&H</li>
</ul>
</div>
</div>
最佳答案
首先将 jquery.js 添加到您的页面
HTML 代码是,
<!-- Thumbnails -->
<div class="large-8 columns">
<div class="row container1">
<div class="large-4 small-6 columns">
<ul class="pricing-table" >
<li class="title">SUP Racing T-Shirts</li>
<li class="bullet-item"><img src="http://codywd.x10.mx/supracing/img/product-imgs/SUP_Tees.jpg"></li>
<li class="description">Show your SUP Racing Pride!</li>
<li class="price">$18.00 + S&H</li>
<div></div>
</ul>
</div>
<div class="large-4 small-6 columns">
<ul class="pricing-table">
<li class="title">SUP Porting for CR/500</li>
<li class="bullet-item"><img src="http://codywd.x10.mx/supracing/img/product-imgs/SUP_Porting.jpg"></li>
<li class="description">Great power and torque throughout the entire power band.</li>
<li class="price">$395.00 + S&H</li>
</ul>
</div>
<div class="large-4 small-6 columns">
<ul class="pricing-table">
<li class="title">SUP Pipe for CR/500</li>
<li class="bullet-item"><img src="http://codywd.x10.mx/supracing/img/product-imgs/SUP_Pipe1.jpg"></li>
<li class="description">Our custom-designed pipe will give you better torque, and more useable power at a lower R.P.M.
This price includes ceramic coating, silencer, flange, and front and rear mounts.</li>
<li class="price">$654.00 + S&H</li>
</ul>
</div>
</div>
<br><br>
<div class="row container1">
<div class="large-4 small-6 columns">
<ul class="pricing-table">
<li class="title">Bored Mikuni TM 38mm</li>
<li class="bullet-item"><img src="http://codywd.x10.mx/supracing/img/product-imgs/Bored_Mikuni.jpg"></li>
<li class="description">With this carburetor, you do not need the return line.
If you need a carb tuning kit for your altitude, please call.</li>
<li class="price">$275.95 + S&H</li>
</ul>
</div>
<div class="large-4 small-6 columns">
<ul class="pricing-table">
<li class="title">V-Force Reeds</li>
<li class="bullet-item"><img src="http://codywd.x10.mx/supracing/img/product-imgs/V-Force-Reeds.jpg"></li>
<li class="description">Description Needed...</li>
<li class="price">$148.95 + S&H</li>
</ul>
</div>
<div class="large-4 small-6 columns">
<ul class="pricing-table">
<li class="title">Pro-X Piston Kits</li>
<li class="bullet-item"><img src="http://codywd.x10.mx/supracing/img/product-imgs/pro-x-pistons.jpg"></li>
<li class="description">Description needed...</li>
<li class="price">$100.00 + S&H</li>
</ul>
</div>
</div>
<div class="row container1">
<div class="large-4 small-6 columns">
<ul class="pricing-table">
<li class="title">Vertex Piston Kits</li>
<li class="bullet-item"><img src="http://codywd.x10.mx/supracing/img/product-imgs/thumbs/Vertex-Pistons.jpg"></li>
<li class="description">Description needed...</li>
<li class="price">Ceramic Coating: $190.00<br>
W/O Ceramic Coating: $150.00</li>
</ul>
</div>
<div class="large-4 small-6 columns">
<ul class="pricing-table">
<li class="title">MSD Coils</li>
<li class="bullet-item"><img src="http://codywd.x10.mx/supracing/img/product-imgs/thumbs/MSD_Coils.gif"></li>
<li class="description">Description needed...</li>
<li class="price">$61.95 + S&H</li>
</ul>
</div>
<div class="large-4 small-6 columns">
<ul class="pricing-table">
<li class="title">Billethead</li>
<li class="bullet-item"><img src="http://codywd.x10.mx/supracing/img/product-imgs/billetthead2.jpg"></li>
<li class="description">Description Needed...</li>
<li class="price">$000.00 + S&H</li>
</ul>
</div>
</div>
</div>
<!-- End Thumbnails -->
然后添加这个 jquery 代码,它将起作用,
<script>
function setEqualHeight(columns)
{
var tallestcolumn = 0;
columns.each(
function()
{
currentHeight = $(this).height() +160;
//alert(currentHeight);
if(currentHeight > tallestcolumn)
{
tallestcolumn = currentHeight;
}
}
);
//alert(tallestcolumn);
columns.height(tallestcolumn);
}
$(document).ready(function() {
setEqualHeight($(".container1 > div > ul"));
});
</script>
关于javascript - 设置定价表相同高度 zurb 基础,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22338177/
vue3 快速入门系列 - 基础 前面我们已经用 vue2 和 react 做过开发了。 从 vue2 升级到 vue3 成本较大,特别是较大的项目。所以许多公司对旧项目继续使用vue2,新项目则
C# 基础 C#项目创建 这里注意win10虚拟机需要更新下补丁,不然直接下载visual studio 2022会显示版本不支持 HelloWorld C#的类文件都是以.cs结尾,入口方法为sta
关于 iPhone 内存管理的非常基本的问题: 假设我有一个 viewController,其中有几个 subview 也由 viewController 控制。当我删除顶部 viewControll
我仍在努力适应指针。不是概念——我理解内存位置、匹配可变长度的指针增量等——这是语法。这是一个我认为是我感到困惑/无法直观把握的原因之一: int a = 42; 在一个int大小的内存空间中分配并放
1. 简介 Kafka(Apache Kafka) 是一种分布式流数据平台,最初由LinkedIn开发,并于后来捐赠给Apache软件基金会,成为了一个Apache顶级项目。它被设计用于处理大规
1.想要在命令提示符下操作mysql服务器,添加系统变量。(计算机-系统属性——环境变量——path) 2.查询数据表中的数据; select selection_lis
MySQL表的增删改查(基础) 1. CRUD 注释:在SQL中可以使用“–空格+描述”来表示注释说明 CRUD 即增加(Create)、查询(Retrieve)、更新(Update)、删除(Dele
我有一个网页,可以在加载时打开显示模式,在这个模式中,我有一个可以打开第二个模式的链接。当第二个模式关闭时(通过单击关闭按钮或单击模式外部),我想重新打开第一个模式。 对于关闭按钮,我可以通过向具有
使用 Core Data Fetched Properties,我如何执行这个简单的请求: 我希望获取的属性 ( myFetchProp ) 存储 StoreA ,它应该这样做: [myFetchPr
关闭。这个问题是opinion-based .它目前不接受答案。 想改进这个问题?更新问题,以便 editing this post 可以用事实和引用来回答它. 8年前关闭。 Improve this
最近,我得到了一个现有的Drupal项目,并被要求改进前端(HTML,JavaScript,CSS)。我在Django,PHP,Ruby等方面具有大量的前端和后端开发经验,但是我没有任何Drupal经
我试图让我的用户通过使用扫描仪类来决定要做什么,但我有一个问题,代码一旦运行就不会激活,并且它不会让我跳过任何行。我的代码如下所示: Scanner input = new Scanner(S
对模糊的标题表示歉意,因为我想不出这个名字是什么。 基本上创建一个计算学生财务付款的小程序。当我运行它时,它计算对象限额没有问题。然而,无论我尝试什么,对象“助学金”似乎除了 0 之外什么也没有提出。
这是我的代码 - main() { double x; double y = pow(((1/3 + sin(x/2))(pow(x, 3) + 3)), 1/3); prin
如果我的术语在这个问题上有误,我们深表歉意。 采取以下功能: i = 1; v = i * 2; for (j = 0; j < 4; j++ ) { console.log(v);
我的应用程序中有不同的类文件。我有 5 个类,其中 2 个是 Activity ,1 个是运行的服务。其他 2 个只是类。这两个类中变量的生命周期是多少。我知道一个 Activity 可以被操作系统杀
例如,一个方法返回一个 List 类型的对象。 public List bojangles () ... 一些代码调用方法FooBar.bojangles.iterator(); 我是 Java 的新
我遇到了一个奇怪的问题,网格的大小不适合我的屏幕。当我使用 12 列大时,它只占据屏幕的 1/3 的中间,请参见图像。我不确定是什么导致了这个问题。我没有任何会导致这种情况发生的奇怪 CSS。我不会在
我尝试使用头文件和源文件,但遇到了问题。因此,我对我正在尝试做的事情做了一个简化版本,我在 CodeBlocks 中遇到了同样的错误(undefined reference to add(double
我正在为我的网格系统使用基础,但这在任何网格系统中都可能是一个问题。我基本上用一个容器包裹了 3 个单元格,但其中一个单元格应该长到页面边框(留在我的 Sampe-Image 中)但这也可能在右侧)。
我是一名优秀的程序员,十分优秀!