Skip to content

Commit c822c4f

Browse files
committed
fix
1 parent 7f81fd9 commit c822c4f

1 file changed

Lines changed: 6 additions & 7 deletions

File tree

Picviewer CE+/Picviewer CE+.user.js

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// @description Powerful picture viewing tool online, which can popup/scale/rotate/batch save pictures or find the HD original picture automatically
77
// @description:zh-CN NLF 的围观图修改版,增加高清原图查找显示(在线看图工具,支持图片翻转、旋转、缩放、弹出大图、批量保存、查找原图)
88
// @description:zh-TW NLF 的圍觀圖修改版,增加高清原圖查詢顯示(線上看圖工具,支援圖片翻轉、旋轉、縮放、彈出大圖、批量儲存、查詢原圖)
9-
// @version 2018.4.14.1
9+
// @version 2018.4.14.2
1010
// @created 2011-6-15
1111
// @namespace http://userscripts.org/users/NLF
1212
// @homepage http://hoothin.com
@@ -1782,10 +1782,9 @@
17821782

17831783
var Tween = {
17841784
Cubic: {
1785-
easeInOut: function(t,b,c,d){
1786-
if ((t/=d/2) < 1) return c/2*t*t*t + b;
1787-
return c/2*((t-=2)*t*t + 2) + b;
1788-
},
1785+
easeInOut:function(t,b,c,d){
1786+
return -c/2*(Math.cos(Math.PI*t/d)-1)+b
1787+
}
17891788
},
17901789
};
17911790

@@ -2210,12 +2209,12 @@
22102209
'</span>'+
22112210
'<span class="pv-gallery-head-command-drop-list pv-gallery-head-command-drop-list-others">'+
22122211
'<span class="pv-gallery-head-command-drop-list-item" data-command="psImage" title="'+i18n("onlineEditTip",prefs.gallery.editSite)+'">'+i18n("onlineEdit")+'</span>'+
2213-
'<span class="pv-gallery-head-command-drop-list-item" data-command="openInNewWindow" title="'+i18n("openInNewWindowTip")+'">'+i18n("openInNewWindow")+'</span>'+
2212+
'<span class="pv-gallery-head-command-drop-list-item" data-command="exportImages" title="'+i18n("exportImagesTip")+'">'+i18n("exportImages")+'</span>'+
22142213
'<span class="pv-gallery-head-command-drop-list-item" data-command="copyImages" title="'+i18n("copyImagesUrlTip")+'">'+i18n("copyImagesUrl")+'</span>'+
22152214
'<span class="pv-gallery-head-command-drop-list-item" data-command="scrollIntoView" title="'+i18n("findInPageTip")+'">'+i18n("findInPage")+'</span>'+
22162215
'<span class="pv-gallery-head-command-drop-list-item" data-command="enterCollection" title="'+i18n("viewCollectionTip")+'">'+i18n("viewCollection")+'</span>'+
2217-
'<span class="pv-gallery-head-command-drop-list-item" data-command="exportImages" title="'+i18n("exportImagesTip")+'">'+i18n("exportImages")+'</span>'+
22182216
'<span class="pv-gallery-head-command-drop-list-item" data-command="downloadImage" title="'+i18n("downloadImageTip")+'">'+i18n("downloadImage")+'</span>'+
2217+
'<span class="pv-gallery-head-command-drop-list-item" data-command="openInNewWindow" title="'+i18n("openInNewWindowTip")+'">'+i18n("openInNewWindow")+'</span>'+
22192218
'<span class="pv-gallery-head-command-drop-list-item" title="'+i18n("autoRefreshTip")+'">'+
22202219
'<input type="checkbox" data-command="scrollToEndAndReload"/>'+
22212220
'<label data-command="scrollToEndAndReload">'+i18n("autoRefresh")+'</label>'+

0 commit comments

Comments
 (0)