【发布时间】:2012-02-22 12:43:24
【问题描述】:
我正在尝试修改单击缩略图时打开的图像框的高度和宽度,但没有成功。
这是我目前的代码
@for (int i = 0; i < Model.count; i++)
{
<a href= "@Url.Action("GetImage", "Image", new { id = i })" rel="prettyPhoto[pp_gal]">
<img src= "@Url.Action("GetImage", "Image", new { id = i })" alt="Image @(i+1)" width="240" height="240" /></a>
}
<script type="text/javascript">
$(document).ready(function () {
$("a[rel^='prettyPhoto']").prettyPhoto({
autoplay_slideshow: false,
show_title: true,
default_width: 300, //I have tried playing with these values
default_height: 200, //I have tried playing with these values
theme: 'pp_default',
overlay_gallery: false,
social_tools: false
});
});
</script>
任何帮助将不胜感激。
【问题讨论】:
标签: jquery asp.net-mvc-3 prettyphoto