使用jQuery和PHP进行图像缩放

时间:2013-08-10 05:09:53

标签: php jquery zoom

我的文件夹中有两个图像:一个较小,一个较大。

前端显示较小的图像。当我点击这个较小的图像时,通过使用jQuery缩放功能,更大的图像将出现在另一个窗口上。

它正在使用HTML但不能使用PHP。

你能帮帮我吗?

jQuery缩放代码:

function zoom(photo, title,w,h) 
{
    var left = (screen.width/2)-(w/2);

    var top = (screen.height/2)-(h/2);

    var targetWin = window.open (photo, title, 'titlebar=0, toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width='+w+', height='+h+', top='+top+', left='+left);
}

PHP代码:

<?php
    echo  "<img src='./smaller/".$a."' onClick=zoom('./bigger/".$a."',400,500); width='100px' height='91px'>";
?>

1 个答案:

答案 0 :(得分:0)

PHP代码

  <?php
     echo  "<img src='./smaller/".$a."' onClick='zoom(\'./bigger/".$a."\',400,500);' width='100px' height='91px'>";
?>