金凯瑞摇头三人组

📝 一句话概括:  在金·凯瑞的表情包中,上图的摇头丸三人组是最经典、流传最广的图。而且它的兼容性非常高,无论是与《小苹果》还是《最炫民族风》搭配,你都会感到动感十足。这张图出自NBC电视台从1975年开始播出的综艺节目《星期六之夜》,《星期六之夜》是一档

动图


  在金·凯瑞的表情包中,上图的摇头丸三人组是最经典、流传最广的图。而且它的兼容性非常高,无论是与《小苹果》还是《最炫民族风》搭配,你都会感到动感十足。这张图出自NBC电视台从1975年开始播出的综艺节目《星期六之夜》,《星期六之夜》是一档充满了各种吐槽、调侃、冷笑话、黑色幽默、节操下限的节目,其最大的特色就是一定时间内会请名人来客串相同的小短片,像上图的摇头丸三人组短片中是讲三人吃了摇头丸去夜总会撩妹的情节。除了金·凯瑞,“阿甘”汤姆·汉克斯、比尔·盖茨、史泰龙也都曾受邀客串过相同的短片。这个系列短片也捧红了上图坐在司机位置的威尔·法瑞尔,他主演的《失落的大陆》、《二流警探》都是值得一看的喜剧电影。



yqweilkj
梗百科的内容贡献者,专注收录最新网络热梗。

💬 评论 (0)

💭

暂无评论,来说两句吧!

发表评论


function copyToClipboard(url) { var input = document.createElement('input'); input.value = url; document.body.appendChild(input); input.select(); document.execCommand('copy'); document.body.removeChild(input); alert('✅ 链接已复制到剪贴板'); } // 为文章内容中的图片添加"用此图做梗图"按钮 console.log('页面加载,page = 1'); $(function() { console.log('jQuery ready,开始查找文章中的图片'); // 找到文章内容区域的所有图片 var $images = $('.article-content img'); console.log('找到 ' + $images.length + ' 张图片'); $images.each(function(index) { var $img = $(this); var imgSrc = $img.attr('src'); console.log('处理图片 ' + (index + 1) + ':', imgSrc); // 跳过已经处理过的图片 if($img.parent().hasClass('meme-img-wrapper')) { console.log(' → 已处理,跳过'); return; } // 等待图片加载完成后检查尺寸 if($img[0].complete) { processImage($img, imgSrc, index); } else { $img.on('load', function() { processImage($img, imgSrc, index); }); } }); function processImage($img, imgSrc, index) { // 跳过头像等小图标 var imgWidth = $img[0].naturalWidth || $img.width(); var imgHeight = $img[0].naturalHeight || $img.height(); console.log('图片 ' + (index + 1) + ' 尺寸:', imgWidth + 'x' + imgHeight); if(imgWidth < 100 || imgHeight < 100) { console.log(' → 图片太小,跳过'); return; } // 包裹图片 $img.wrap('
'); var $wrapper = $img.parent('.meme-img-wrapper'); // 在图片下方添加按钮 var memegenUrl = '/operate/memegen' + '?img=' + encodeURIComponent(imgSrc); var $btn = $('🎨 用此图做梗图'); $wrapper.append($btn); console.log(' → 已添加按钮'); } });