我正在与 Smarty 合作。我想在我的文件中为 nth-child li/div 类添加一个if else
条件。.tpl
我有两种图像尺寸。我想在第一个中使用 600px 图像,li
在第二个和第三个中使用 400px 图像,在第四个中再次使用 600px 图像,li
依此类推。
目前我正在使用 CSS3nth-child
选择器并使用缩放的 400 像素图像。但是加载时间很糟糕。我想在需要的地方使用较小的图像。
我想它非常复杂。是吗?
这是我的代码:
<img src="{$purl}/thumbs/{$posts[i].pic}" alt="{$posts[i].story|stripslashes}" />
它存在于循环{section name=i loop=$posts} {include file="posts.tpl"} {/section}
内部posts.tpl
。