我无法在智能模板中集成360魔法旋转。在添加以下代码时
<a class="Magic360" href="assets/spin-images/Bar-360-01.jpg" data-magic360-options="filename: Bar-360-{col}.jpg;">
在使用文件名添加data-magic360-options的属性时,屏幕将变为空白。
我很聪明2.x。
答案 0 :(得分:1)
Smarty(PHP框架)将所有字符串{..}统计为自己的指令。
为避免这种情况,您应该使用以下代码:
{literal}<a class="Magic360" href="assets/spin-images/Bar-360-01.jpg" data-magic360-options="filename: Bar-360-{col}.jpg;">{/literal}
或
<a class="Magic360" href="assets/spin-images/Bar-360-01.jpg" data-magic360-options="filename: Bar-360-{ldelim}col{rdelim}.jpg;">
答案 1 :(得分:-1)
您忘了$
签署col
变量吗?
data-magic360-options="filename: Bar-360-{col}.jpg;"
也许您应该使用{$col}
:
<a class="Magic360" href="assets/spin-images/Bar-360-01.jpg" data-magic360-options="filename: Bar-360-{$col}.jpg;">