{dede:global.cfg_templets_skin/}/images/1.jpg
调用图片链接标签:
<a href="[field:arcurl/]"><img src="[field:picname/]" alt="[field:title/]" ></a>
<a href='[field:arcurl /]'>[field:image/]</a>
{dede:arclist flag='h' typeid='' row='' titlelen='' infolen='' imgwidth='' img height='' listtype='' orderby='' limit='0,1'} [field:title/] {/dede:arclist} 这样可以调用出来了方法一:找到模板中代码的位置如:
<div class="picview">
{dede:field name='image'/}
</div>
将其替换为:
<div class="picview">
<img src="{dede:field name='litpic'/}" width="200" height="250">
</div>
这样就可以自由的实现各个模板中图片的大小啦,非常的方便!风信网络推荐大家采用此方法。
方法二:
修改文件:include/arc.archives.class.php 262行
//模板里直接使用{dede:field name='image'/}获取缩略图
$this->Fields['image'] = (!eregi('jpg|gif|png', $this->Fields['picname']) ? '' : "<img src='{$this->Fields['picname']}' />")
将其替换为:
$this->Fields['image'] = (!eregi('jpg|gif|png', $this->Fields['picname']) ? '' : "<img src='{$this->Fields['picname']}' onload='javascript:if (this.width>400) this.style.width=400'/>")
加上onload="javascript:if (this.width>400) this.style.width=400"可以图片大小。超过400则只显示400,小于400的则显示实际图片大小。
这种方法有个缺点:每个图片都是width=400,对于某些图片显示可能会对页面效果造成影响。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)