【发布时间】:2013-11-26 05:49:03
【问题描述】:
我的站点中有一个prettyphoto 实现。我的问题是,根据图像的大小,prettyphoto 布局总是会发生变化。我想将其设为固定大小。
我尝试将href 链接到特定大小的图像。但它不起作用。
我试过的代码
<a class="zoom" id="zoom-image" height="290" width="267" href="/images/imagehandler.ashx?path=/product-images/334.jpg" >
<img id="large-image" src="/images/imagehandler.ashx?path=/product-images/334.jpg&width=267&height=290">
</a>
【问题讨论】:
-
只需在img标签
<img id="large-image" height="290" width="267" src="/images/imagehandler.ashx?path=/product-images/334.jpg&amp;width=267&amp;height=290"/>中添加Height & width属性 -
@dholakiyaankit 它不起作用:(
-
你能提供小提琴吗?
标签: javascript html css prettyphoto