我有这段代码在fullsize中打开prettyPhoto。
<script type="text/javascript" charset="utf-8">
$(document).ready(function(){
$.prettyPhoto.open('url','Title','Description');
});
</script>
如果我想在prettyPhoto弹出窗口中更改默认宽度和高度,该怎么办。
答案 0 :(得分:1)
$.prettyPhoto({
default_width: 500,
default_height: 344
});