|
6 | 6 | // @description Powerful picture viewing tool online, which can popup/scale/rotate/batch save pictures or find the HD original picture automatically |
7 | 7 | // @description:zh-CN NLF 的围观图修改版,增加高清原图查找显示(在线看图工具,支持图片翻转、旋转、缩放、弹出大图、批量保存、查找原图) |
8 | 8 | // @description:zh-TW NLF 的圍觀圖修改版,增加高清原圖查詢顯示(線上看圖工具,支援圖片翻轉、旋轉、縮放、彈出大圖、批量儲存、查詢原圖) |
9 | | -// @version 2018.4.14.1 |
| 9 | +// @version 2018.4.14.2 |
10 | 10 | // @created 2011-6-15 |
11 | 11 | // @namespace http://userscripts.org/users/NLF |
12 | 12 | // @homepage http://hoothin.com |
|
1782 | 1782 |
|
1783 | 1783 | var Tween = { |
1784 | 1784 | 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 | + } |
1789 | 1788 | }, |
1790 | 1789 | }; |
1791 | 1790 |
|
|
2210 | 2209 | '</span>'+ |
2211 | 2210 | '<span class="pv-gallery-head-command-drop-list pv-gallery-head-command-drop-list-others">'+ |
2212 | 2211 | '<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>'+ |
2214 | 2213 | '<span class="pv-gallery-head-command-drop-list-item" data-command="copyImages" title="'+i18n("copyImagesUrlTip")+'">'+i18n("copyImagesUrl")+'</span>'+ |
2215 | 2214 | '<span class="pv-gallery-head-command-drop-list-item" data-command="scrollIntoView" title="'+i18n("findInPageTip")+'">'+i18n("findInPage")+'</span>'+ |
2216 | 2215 | '<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>'+ |
2218 | 2216 | '<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>'+ |
2219 | 2218 | '<span class="pv-gallery-head-command-drop-list-item" title="'+i18n("autoRefreshTip")+'">'+ |
2220 | 2219 | '<input type="checkbox" data-command="scrollToEndAndReload"/>'+ |
2221 | 2220 | '<label data-command="scrollToEndAndReload">'+i18n("autoRefresh")+'</label>'+ |
|
0 commit comments