// ==UserScript== // @name osc动弹图片预览 // @namespace http://tampermonkey.net/ // @version 0.6 // @description 再也不用打开新页面看图片啦 // @author Hjj // @match https://www.oschina.net/tweets* // @match http://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); $('#v-tweetlist,.hot-tweet').on('click','.tweetitem img[data-small-img]',function(e){ e.preventDefault(); previewBox.css('transform','scale(1)'); var bigSrc = $(e.target).attr('data-big-img'); previewBox.empty().append( $('