我尝试使用gallery prettyphoto但我有这个代码的问题..如何用cakephp html helper编写这段代码
<li><a href="images/fullscreen/2.jpg" rel="prettyPhoto[gallery1]">
<img src="images/thumbnails/t_2.jpg" width="60" height="60" alt="Nice building" /></a></li>
答案 0 :(得分:3)
关键部分是关闭链接文本的HTML转义(因为它包含HTML图像标记)。此外,图像通常存储在/img/...
之类的路径中,但这取决于您的实现。
<li><?php
$thumb = $this->Html->image('images/thumbnails/t_2.jpg', array(
'width' => 60,
'height' => 60,
'alt' => 'Nice building',
));
echo $this->Html->link($thumb, 'images/fullscreen/2.jpg', array(
'rel' => 'prettyPhoto[gallery1]',
'escape' => false, // important
));
?></li>