如何在Wordpress中禁用投资组合中的图像缩放效果?

时间:2016-01-14 09:07:42

标签: wordpress image content-management-system zoom effect

当您向下滚动时,您将看到6个投资组合图像。 当您将鼠标悬停在每个上时,您将获得缩放效果。

如何在代码中关闭此缩放效果?

谢谢。

1 个答案:

答案 0 :(得分:0)

themes/raw/js文件夹中,您有文件common.js。在此文件中查找行

$('.thumb, .gallery-icon').epicHoverFadeZoom({
    overlayColor: udt_global_vars.thumb_rollover_color,             //Hex: #xxxx
    fontColor: udt_global_vars.thumb_rollover_text_color,           //Hex: #xxxx
    captionDirection: 'topToBottom',                                //String: caption slide in/out direction
    opacity: udt_global_vars.thumb_rollover_opacity,                //Integer: 0-1
    transitionSpeed: 600,                                           //Integer: transitions speed, in milliseconds
    easing: 'swing',                                                //String: easing method - see http://jqueryui.com/demos/effect/easing.html
    padding: parseFloat(udt_global_vars.thumb_rollover_padding),    //Integer: padding
    mobileActive:false,                                             //Boolean: whether to activate/deactivate for mobile
    zoomFactor: parseFloat(udt_global_vars.thumb_rollover_zoom_factor), //Float: zoom factor
    rolloverLogo: udt_global_vars.rollover_graphic
});

并评论它们,然后再试一次。

Bassicaly缩放效果由插件jquery.epicHover-fadeZoom.js

制作