菊厂

📝 一句话概括:菊厂,指的是华为公司,是网友给华为公司起的昵称。因为华为公司的logo是一朵红色的菊花,菊花象征着蓬勃向上,万众一心。但是只要你仔细看,其实它更像切开的苹果,意思是华为手机要干翻苹果。不过说起来,华为logo最早并不是这个版本,在2006年

菊厂,指的是华为公司,是网友给华为公司起的昵称。因为华为公司的logo是一朵红色的菊花,菊花象征着蓬勃向上,万众一心。
但是只要你仔细看,其实它更像切开的苹果,意思是华为手机要干翻苹果。

不过说起来,华为logo最早并不是这个版本,在2006年以前其实是有15瓣花瓣的,后来变成了8瓣。

至于为什么会从15瓣变成8瓣,有人说华为创办初期是15个人,后来走了7个留下8个,所以logo也改为了8瓣。

也有人说换标之后,公司创办初期的工作时间由15个小时变成了8小时。另外还有人表示,8瓣的logo像“非”字的变体,这和小米logo的“LEI”非常相似。

华为logo的真正含义,其实任正非在接受采访的时候就曾经说过,华为的logo是一朵菊花,也是一个正在散发光芒的大太阳,他希望华为的员工像菊花一样团结而且积极向上。

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