Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/css/32.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Jquery Magento图像翻转效果_Jquery_Css_Magento_Rollover - Fatal编程技术网

Jquery Magento图像翻转效果

Jquery Magento图像翻转效果,jquery,css,magento,rollover,Jquery,Css,Magento,Rollover,我想在magento产品页面上创建一个滚动图像效果,我想知道您是否可以为我提供教程或扩展,或者是否可以帮助我编写代码 您可以使用Jquery或Javascript执行简单的鼠标悬停功能。只需将其插入主模板。欲了解更多信息,请发布更多信息或链接到一个实时网站 其中img表示滚动所需的图像的类或id $(function() { $("img") .mouseover(function() { $(this).attr("src", newImageUrl); }

我想在magento产品页面上创建一个滚动图像效果,我想知道您是否可以为我提供教程或扩展,或者是否可以帮助我编写代码

您可以使用Jquery或Javascript执行简单的鼠标悬停功能。只需将其插入主模板。欲了解更多信息,请发布更多信息或链接到一个实时网站

其中img表示滚动所需的图像的类或id

$(function() {

$("img")
    .mouseover(function() { 
        $(this).attr("src", newImageUrl);
    })
    .mouseout(function() {
        var = $(this).attr("src").replace("over.gif", ".gif");
        $(this).attr("src", src);
    });
});`

毫无疑问,我关心的是magento,如何调用图像以及修改哪个文件。