2015-04-21 79 views
1

我無法將360魔力旋轉整合到smarty模板中。在添加以下代碼的同時添加以下代碼在smarty中實現360魔力旋轉

<a class="Magic360" href="assets/spin-images/Bar-360-01.jpg" data-magic360-options="filename: Bar-360-{col}.jpg;"> 

在添加文件名爲data-magic360-options的屬性時,屏幕將變爲空白。

我很喜歡smarty 2.x.

回答

-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;"> 
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;">