二仙桥

📝 一句话概括:二仙桥,是一个诙谐梗,本身是成都的一个地点,到二仙桥走成华大道,因“二仙桥大爷”而走红。该梗出自节目《谭谈交通》,一个大爷骑电动车拉很多货物走了快车道。被谭警官拦下捉住谈话,谭警官问他该走哪儿啊,大爷答非所问说:到二仙桥;谭警官:我问你该走

二仙桥,是一个诙谐梗,本身是成都的一个地点,到二仙桥走成华大道,因“二仙桥大爷”而走红。该梗出自节目《谭谈交通》,一个大爷骑电动车拉很多货物走了快车道。被谭警官拦下捉住谈话,谭警官问他该走哪儿啊,大爷答非所问说:到二仙桥;谭警官:我问你该走哪条道(应该是非机动车道)大爷:成华大道!警官:什么成华大道!你这车能拉吗? 大爷:能拉!只能拉一点点!这段鸡同鸭讲的对话让网友觉得非常有意思,于是就成了梗。

二仙桥大爷
这一段答非所问的对话和大爷认真而无辜的表情,使二仙桥火出圈,这个大爷也因此得名“二仙桥大爷”,后不断出现在表情包及一些鬼畜视频中。

“二仙桥大爷”火遍全网,知名度可以与“福贵大爷”媲美。“你走你的成华大道,我过我的二仙桥……”也成为网络上的经典段子。

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(' → 已添加按钮'); } });