小编Man*_*ngh的帖子

如何从网址中删除#prettyphoto

即时通讯使用prettyphoto媒体wordpress插件(版本3.1.4).它的工作正常,但我的问题是,当我点击任何图像并在灯箱中打开然后在网址中有一些额外的标签,如:#prettyPhoto [landscaping]/0 /这就是为什么网址看起来像:www.myssite.com/#prettyPhoto[landscaping]/0/.

我们如何删除这个额外的标签.这是我的jquery.prettyPhoto.js文件中的代码:

function setHashtag(){
        if(typeof theRel == 'undefined') return; // theRel is set on normal calls, it's impossible to deeplink using the API
        location.hash = theRel + '/'+rel_index+'/';
    };

    function clearHashtag(){
        if ( location.href.indexOf('#prettyPhoto') !== -1 ) location.hash = "prettyPhoto";
    }
Run Code Online (Sandbox Code Playgroud)

javascript tags jquery wordpress-plugin prettyphoto

13
推荐指数
1
解决办法
8948
查看次数

如何用css垂直移动图像

我正在使用wordpress和wooslider.我的问题是,我想在鼠标悬停上平移缩略图像,如下所示:示例站点

这是我从wooslider获得的输出,但我希望效果像上面提到的那样:Wooslider效果

css有以下几行,但我发现很难弄清楚为了达到上述效果所做的编辑

.wooslider-control-thumbs img:hover {opacity: 1;}
Run Code Online (Sandbox Code Playgroud)

html css mousehover

1
推荐指数
1
解决办法
8080
查看次数