// ==UserScript== // @name osc动弹图片预览 // @namespace http://tampermonkey.net/ // @version 0.2 // @description 再也不用打开新页面看图片啦 // @author Hjj // @match https://www.oschina.net/tweets // @require http://cdn.staticfile.org/jquery/1.8.2/jquery.min.js // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; // Your code here... var _scale = 1; var previewBox = $('
'); previewBox.css({ 'position': 'fixed', 'top': '15px', 'left': '15px', 'display': 'none', 'transform-origin':'0 0' }).on('mousewheel',scale); $('body').append(previewBox); $('#tiles,#HotTweets').on('click','.tweet>.img>a',function(e){ e.preventDefault(); previewBox.css('transform','scale(1)'); var thumbSrc = $(e.target).attr('src'); var trueSrc = thumbSrc.replace(/_thumb/,''); previewBox.empty().append( $('