官推

📝 一句话概括:官推,也叫官推cp,是指官方有偏向的支持的cp,也叫“官配”,常出现在同人作品中,例如齐木楠雄的灾难中齐木和心美。官推也可以理解为卖腐,是官方为了迎合市场而进行的关于角色间关系的模糊,暧昧行为。官配cp就是:官方(漫画的话一般指作者)已经确

官推,也叫官推cp,是指官方有偏向的支持的cp,也叫“官配”,常出现在同人作品中,例如齐木楠雄的灾难中齐木和心美。

官推也可以理解为卖腐,是官方为了迎合市场而进行的关于角色间关系的模糊,暧昧行为。

官配cp就是:官方(漫画的话一般指作者)已经确定的cp,例如鸣人和雏田。主要用在同人作品中,也有官方确定的人物配对,也就是官方CP,通称“官配”。
官配即是官方配对,依照作者本人或是公司筹划上重点推出的一种人物配对方式(这里限动漫ACGN领域),每个角色通常只有一种或是和不同性别的各一种的配对。

官配在某种意义上是最般配的。一般意义上来说,都是互有恋情上的好感为官配,一方暗恋而另一方不予回应的则不算。作品中修成正果结婚在一起的就是官配。

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