用户头像
设计师必备!Potlab SVG 动画图标库免费下载,支持矢量自定义颜色大小
今天给大家带来一款超级实用的宝藏级工具 ——Potlab SVG 动画图标库,它简直是设计师的「效率神器」!作为一名在互联网行业摸爬滚打了 10 年的老司机,我测评过无数设计资源平台,而 Potlab 凭借完全免费、矢量可定制、动画效果丰富这三大核心优势,成功跻身我的「年度最佳工具清单」。如果你还在为找高质量的图标素材发愁,或者想快速提升项目的视觉表现力,这篇深度解析一定要看完!

? 核心亮点:为什么设计师都爱用 Potlab?


1. 完全免费且开源,商业项目放心用


Potlab 的所有图标均采用CC 4.0 开源协议,这意味着你可以免费用于个人和商业项目,甚至对图标进行二次修改和分发,唯一的要求是保留原作者署名。对比那些动辄几百元的付费图标库,或者免费但限制商用的平台,Potlab 简直是「业界良心」。

2. 矢量格式 + 自定义属性,设计自由度拉满


所有图标均为SVG 矢量格式,支持无限缩放而不失真,无论是在手机屏幕还是巨幅海报上,都能保持清晰的细节。更绝的是,你可以轻松调整图标的颜色、大小、描边宽度,甚至通过 CSS 代码修改动画参数,比如速度、循环次数等。举个例子,如果你下载了一个红色的购物车图标,只需要修改fill属性,就能一键变成蓝色、绿色或任何你想要的颜色,完美适配品牌色。

3. 自带动画效果,让设计「动」起来


普通的静态图标看多了难免单调,而 Potlab 的图标内置基础动画效果,比如旋转、缩放、淡入淡出等,无需额外编写代码,直接通过 HTML 或 CSS 引用就能实现动态效果。这对于网页按钮、加载提示、交互元素等场景来说,能大大提升用户体验。想象一下,当用户点击按钮时,图标会轻微旋转或放大,这种细节上的「小心思」,往往能让设计作品脱颖而出。

4. 经典主题 + 高频场景,素材库实用又高效


Potlab 目前收录了50 + 经典主题,包括常见的爱心、通知、购物车、定位、放大镜、相机等,覆盖了电商、社交、工具类等高频设计场景。虽然数量不算多,但每一个都是精心打磨的「万能款」,比如搜索图标采用极简的线条风格,既适合科技感的 APP,也能融入复古风的网页设计。这种「少而精」的策略,比那些动辄上万图标却质量参差不齐的平台更实用。

?️ 保姆级使用教程:3 步搞定图标下载与定制


第一步:快速找到心仪的图标


  1. 打开 Potlab 官网(http://www.potlabicons.com/),首页以网格形式展示所有图标,你可以通过滚动浏览或使用浏览器的搜索功能(按Ctrl+F)快速定位关键词,比如输入「购物车」或「通知」。
  2. 点击任意图标即可进入预览页面,你可以在这里查看图标的静态样式、动画效果、代码示例,甚至调整颜色和大小实时预览效果。

第二步:下载并导入项目


  1. 在预览页面下方,点击「Download」按钮,选择下载格式为.html.svg。推荐选择.svg格式,方便后续在设计软件中编辑。
  2. 网页开发者:直接将 SVG 代码复制到 HTML 文件中,或者通过标签引用 SVG 文件路径。如果需要动画效果,只需添加少量 CSS 代码即可控制动画行为,比如:
    css
    .icon {
      animation: spin s linear infinite; /* 定义旋转动画 */
    }
    @keyframes spin {
      from { transform: rotate(deg); }
      to { transform: rotate(deg); }
    }
    

  3. UI/UX 设计师:将 SVG 文件导入 Sketch、Figma 或 Adobe XD 等工具中,解组后即可自由修改颜色、描边、添加蒙版等。如果需要批量处理图标,推荐使用插件如「SVG Export」进行批量导出和格式转换。

第三步:进阶自定义技巧


  • 颜色调整:用文本编辑器(如 Notepad++)打开 SVG 文件,搜索fill属性,将颜色值替换为你需要的色号(如#FF6B6B)。保存后重新导入设计软件,图标颜色就修改完成啦。
  • 动画参数修改:如果你对默认的动画速度或循环次数不满意,可以在 SVG 代码中找到标签,调整dur(持续时间)、repeatCount(循环次数)等属性。例如:
    xml
    <animate
      attributeName="transform"
      type="rotate"
      from="0 50 50"
      to="360 50 50"
      dur="1s"
      repeatCount="indefinite"
    />
    

  • 图标组合与扩展:将多个图标解组后,通过布尔运算(如合并、相交、减去顶层)创建全新的图形,或者添加文字、渐变效果,打造独一无二的设计元素。

? 跨平台兼容性与优化建议


1. 移动端适配技巧


  • iOS 和 Android:SVG 图标在现代移动浏览器(如 Chrome、Safari)中支持良好,但为了兼容旧版本系统(如 Android 4.0 以下),建议使用SVG-Android 库VectorDrawableCompat进行渲染,确保图标在低端设备上也能流畅显示。
  • React Native 和 Flutter:通过第三方库如react-native-svgflutter_svg,可以直接在代码中引用 Potlab 的 SVG 图标,并实现动画效果。

2. 浏览器兼容性处理


  • IE 浏览器:IE9 及以上版本支持 SVG,但 IE8 及以下不支持。为了优雅降级,可以采用「SVG+PNG 双图方案」:在 HTML 中同时引入 SVG 和 PNG 文件,通过 CSS 媒体查询判断浏览器是否支持 SVG,优先显示 SVG,不支持则显示 PNG。
  • 性能优化:如果项目中使用了大量 SVG 图标,建议通过工具如SVGOMG对文件进行压缩,去除冗余代码,减少文件体积,提升页面加载速度。

3. SEO 与无障碍优化


  • 文本替代:为 SVG 图标添加</code>和<code class="bg-dark px-2 py-1 rounded text-primary font-mono text-sm"><desc></code>标签,提供文本描述,帮助搜索引擎和屏幕阅读器理解图标的含义,提升 SEO 和无障碍访问性。</li> <li class="leading-relaxed"><strong>避免嵌入式脚本</strong>:Potlab 的图标不包含 JavaScript 脚本,因此不会影响网页的安全策略,但如果自行添加了交互逻辑,需确保代码符合 Content Security Policy (CSP)。</li> </ul><br> <h3 class="text-xl font-semibold mt-6 mb-3">⚔️ <strong>竞品对比:Potlab vs 其他主流图标库</strong></h3><br> <h4>1. <strong>Animista</strong></h4><br> <ul class="list-disc list-inside mb-4 space-y-2 text-gray-300"> <li class="leading-relaxed"><strong>优势</strong>:专注于 CSS 动画效果,提供大量预设的动画组合,适合快速创建复杂的交互动画。</li> <li class="leading-relaxed"><strong>劣势</strong>:以静态图标为主,动画需手动编写 CSS 代码,学习成本较高;资源数量有限,且部分高级效果需付费解锁。</li> <li class="leading-relaxed"><strong>Potlab 的优势</strong>:图标自带基础动画,无需额外编码;完全免费且开源,商业使用无限制。</li> </ul><br> <h4>2. <strong>Iconscout</strong></h4><br> <ul class="list-disc list-inside mb-4 space-y-2 text-gray-300"> <li class="leading-relaxed"><strong>优势</strong>:拥有超过 150 万个图标和插画,资源库极其丰富;支持 Figma、Sketch 等插件集成,使用便捷。</li> <li class="leading-relaxed"><strong>劣势</strong>:免费版功能受限,高质量素材需订阅高级版(约 $16 / 月);部分图标设计风格偏向「大众款」,缺乏独特性。</li> <li class="leading-relaxed"><strong>Potlab 的优势</strong>:所有资源免费且可商用;图标风格简洁统一,适合追求极简主义的设计师。</li> </ul><br> <h4>3. <strong>Font Awesome</strong></h4><br> <ul class="list-disc list-inside mb-4 space-y-2 text-gray-300"> <li class="leading-relaxed"><strong>优势</strong>:字体图标方案,文件体积小,加载速度快;社区支持强大,有大量第三方扩展库。</li> <li class="leading-relaxed"><strong>劣势</strong>:动画效果依赖 CSS,灵活性较低;图标样式较为固定,难以进行深度定制。</li> <li class="leading-relaxed"><strong>Potlab 的优势</strong>:矢量格式支持任意缩放和编辑;动画效果直接内置在图标中,调用更方便。</li> </ul><br> <h3 class="text-xl font-semibold mt-6 mb-3">? <strong>高阶应用场景与创意玩法</strong></h3><br> <h4>1. <strong>数据可视化与信息图表</strong></h4><br> <div>将 Potlab 的图标与折线图、柱状图结合,制作可视化报告或数据看板。例如,用购物车图标表示销售额,用定位图标标记门店位置,通过颜色和大小变化展示数据差异。</div><br> <h4>2. <strong>品牌视觉升级</strong></h4><br> <ul class="list-disc list-inside mb-4 space-y-2 text-gray-300"> <li class="leading-relaxed"><strong>LOGO 设计</strong>:基于 Potlab 的图标元素进行二次创作,比如将相机图标与字母组合,设计摄影工作室的 LOGO。</li> <li class="leading-relaxed"><strong>图标系统</strong>:统一调整所有图标的颜色和描边风格,打造具有品牌辨识度的图标库,确保 APP 或网站的视觉一致性。</li> </ul><br> <h4>3. <strong>交互原型与动效演示</strong></h4><br> <div>在 Axure 或 Mockplus 中导入 Potlab 的动画图标,制作高保真交互原型,向客户或开发团队展示动态效果,减少沟通成本。例如,用加载动画图标演示数据提交过程,用提示图标展示操作反馈。</div><br> <h4>4. <strong>PPT 与演示设计</strong></h4><br> <ul class="list-disc list-inside mb-4 space-y-2 text-gray-300"> <li class="leading-relaxed">将 SVG 图标插入 PPT 中,通过「布尔运算」或「变体动画」制作动态图表或转场效果,让演示文稿更生动。</li> <li class="leading-relaxed">利用图标作为视觉锚点,配合「缩放定位」功能突出重点内容,提升信息传达效率。</li> </ul><br> <h3 class="text-xl font-semibold mt-6 mb-3">⚠️ <strong>注意事项与避坑指南</strong></h3><br> <ol class="list-decimal list-inside mb-4 space-y-2 text-gray-300"> <li class="leading-relaxed"><strong>版权合规</strong>:虽然 Potlab 的图标可免费商用,但需保留原作者署名。如果你对图标进行了大幅修改,建议在项目文档中注明「基于 Potlab Icons 修改」。</li> <li class="leading-relaxed"><strong>资源局限性</strong>:目前 Potlab 的图标数量有限(约 50 个),如果需要特定主题(如医疗、教育),可能需要结合其他资源库使用。</li> <li class="leading-relaxed"><strong>代码维护</strong>:直接修改 SVG 代码时需谨慎,避免破坏文件结构导致图标无法显示。建议先备份原始文件,再进行编辑。</li> <li class="leading-relaxed"><strong>性能平衡</strong>:过度使用复杂动画可能影响页面性能,建议对非关键元素的动画设置<code class="bg-dark px-2 py-1 rounded text-primary font-mono text-sm">visibility: hidden</code>或<code class="bg-dark px-2 py-1 rounded text-primary font-mono text-sm">display: none</code>,在需要时再触发。</li> </ol><br> <h3 class="text-xl font-semibold mt-6 mb-3">? <strong>总结:Potlab SVG 图标库值不值得用?</strong></h3><br> <div><strong>绝对值得!</strong> 无论是预算有限的个人设计师,还是追求高效协作的团队,Potlab 都能成为你的「秘密武器」。它用<strong>免费 + 开源 + 可定制</strong>的组合拳,解决了设计师找素材、改样式、做动画的三大痛点,而且操作门槛低,新手也能快速上手。如果你还在为图标资源发愁,不妨花 10 分钟试试 Potlab,相信你会和我一样爱不释手!</div><br> <div>最后再提醒一句:Potlab 官网的访问速度可能受网络环境影响,如果加载缓慢,可以尝试切换浏览器或使用加速器。另外,关注他们的 GitHub 仓库(https://github.com/potlabicons),获取最新图标更新和社区贡献的扩展资源。</div><br> <div><strong>该文章由dudu123.com嘟嘟 ai 导航整理,嘟嘟 AI 导航汇集全网优质网址资源和最新优质 AI 工具</strong></div><br> </div> </div> </div> <!-- 文章底部操作栏 --> <footer class="article-footer border-t border-gray-700 p-6 md:p-8"> <div class="flex items-center justify-between gap-4"> <div class="flex items-center space-x-4"> <button class="action-btn bg-primary/20 hover:bg-primary/30 text-primary px-4 py-2 rounded-lg transition-colors flex items-center"> <i class="fa fa-thumbs-up mr-2"></i> <span>点赞 (134)</span> </button> <button class="action-btn bg-dark hover:bg-gray-700 text-gray-300 px-4 py-2 rounded-lg transition-colors flex items-center"> <i class="fa fa-bookmark-o mr-2"></i> <span>收藏</span> </button> <button class="action-btn bg-dark hover:bg-gray-700 text-gray-300 px-4 py-2 rounded-lg transition-colors flex items-center comiis_poster_a"> <i class="fa fa-image mr-2"></i> <span>生成海报</span> </button> </div> <div class="share-buttons flex items-center space-x-2"> <span class="text-gray-400 text-sm mr-2">分享到:</span> <button onclick="Share('tqq')" class="share-btn bg-blue-600 hover:bg-blue-700 text-white w-8 h-8 rounded-full flex items-center justify-center transition-colors"> <i class="fa fa-qq"></i> </button> <button onclick="Share('sina')" class="share-btn bg-red-600 hover:bg-red-700 text-white w-8 h-8 rounded-full flex items-center justify-center transition-colors"> <i class="fa fa-weibo"></i> </button> <button class="share-btn bg-green-600 hover:bg-green-700 text-white w-8 h-8 rounded-full flex items-center justify-center transition-colors" title="微信分享"> <i class="fa fa-weixin"></i> </button> </div> </div> </footer> </article> <!-- 上下篇导航 --> <nav class="article-navigation mt-8"> <div class="grid grid-cols-1 md:grid-cols-2 gap-4"> <div class="nav-item bg-dark-light rounded-xl border border-gray-700 hover:border-primary/50 transition-colors"> <a href="/ai/yjkks.html" title="Potlab Icons 2025 新版发布!海量免费 SVG 动画图标支持代码直接引用" class="block h-full hover:bg-dark-light/50 transition-colors rounded-lg"> <div class="flex items-center text-gray-400 text-sm mb-2"> <i class="fa fa-angle-left mr-2"></i> <span>上一篇</span> </div> <h3 class="font-medium line-clamp-2">Potlab Icons 2025 新版发布!海量免费 SVG 动画图标支持代码直接引用</h3> </a> </div> <div class="nav-item bg-dark-light rounded-xl border border-gray-700 hover:border-primary/50 transition-colors"> <a href="/ai/yjkte.html" title="如何快速获取爱心购物车图标?Potlab Icons 代码直接引用教程来了!" class="block h-full hover:bg-dark-light/50 transition-colors rounded-lg text-right"> <div class="flex items-center justify-end text-gray-400 text-sm mb-2"> <span>下一篇</span> <i class="fa fa-angle-right ml-2"></i> </div> <h3 class="font-medium line-clamp-2">如何快速获取爱心购物车图标?Potlab Icons 代码直接引用教程来了!</h3> </a> </div> </div> </nav> <!-- 相关文章 --> <section class="related-articles mt-8"> <h2 class="text-xl font-bold mb-6 flex items-center"> <span class="bg-primary text-white text-sm w-6 h-6 rounded-full flex items-center justify-center mr-3"> <i class="fa fa-rss"></i> </span> 相关阅读 </h2> <div class="grid grid-cols-1 md:grid-cols-2 gap-6"> <div class="related-article bg-dark-light rounded-xl overflow-hidden hover:shadow-apple-hover transition-all duration-300"> <div class="md:flex"> <div class="md:w-1/3 image-container" style="overflow:hidden;max-height:180px;min-height:120px;"> <a href="/ai/rktk.html" class="block w-full h-full"> <img data-src="https://cdn.yyp.net/diwuai/news/db17f03b58dd445662de1e878bf8f638.jpg" alt="公众号图文排版实用方法,AI工具模板素材解析" class="w-full h-full object-cover rounded-lg lazy" style="display:block;max-height:180px;min-height:120px;object-fit:cover;" onerror="this.style.display='none'; this.parentElement.style.backgroundColor='#666';"> </a> </div> <div class="md:w-2/3 p-4"> <h3 class="font-bold text-lg mb-2 hover:text-primary transition-colors"> <a href="/ai/rktk.html">公众号图文排版实用方法,AI工具模板素材解析</a> </h3> <p class="text-gray-400 text-sm mb-3 line-clamp-2">📝公众号图文排版的核心要点​公众号图文排版不只是简单地把文字堆在一起,它是让内容更易读、更吸引人的关键。读者打开一篇文章,首先注意到的就是排版,乱糟糟的排版会让人瞬间失去阅读兴趣,哪怕内容再好也没用。...</p> <div class="flex items-center text-xs text-gray-500"> <span><i class="fa fa-clock-o mr-1"></i>2025-02-19</span> <span class="mx-2">•</span> <span><i class="fa fa-eye mr-1"></i>1.4k</span> </div> </div> </div> </div><div class="related-article bg-dark-light rounded-xl overflow-hidden hover:shadow-apple-hover transition-all duration-300"> <div class="md:flex"> <div class="md:w-1/3 image-container" style="overflow:hidden;max-height:180px;min-height:120px;"> <a href="/ai/rjmj.html" class="block w-full h-full"> <img data-src="https://cdn.yyp.net/diwuai/news/340e49671dd1daabd1ca660d50f7869e.jpg" alt="2025年适合新媒体小白的编辑器是哪个?从零开始的图文排版指南" class="w-full h-full object-cover rounded-lg lazy" style="display:block;max-height:180px;min-height:120px;object-fit:cover;" onerror="this.style.display='none'; this.parentElement.style.backgroundColor='#666';"> </a> </div> <div class="md:w-2/3 p-4"> <h3 class="font-bold text-lg mb-2 hover:text-primary transition-colors"> <a href="/ai/rjmj.html">2025年适合新媒体小白的编辑器是哪个?从零开始的图文排版指南</a> </h3> <p class="text-gray-400 text-sm mb-3 line-clamp-2">🌟 2025 年适合新媒体小白的编辑器是哪个?从零开始的图文排版指南 新媒体行业发展得太快,每天都有新变化。新手想入行,第一步就得找个好用的编辑器。现在市面上编辑器那么多,哪个才是最适合小白的呢?今天...</p> <div class="flex items-center text-xs text-gray-500"> <span><i class="fa fa-clock-o mr-1"></i>2025-03-25</span> <span class="mx-2">•</span> <span><i class="fa fa-eye mr-1"></i>4.7k</span> </div> </div> </div> </div><div class="related-article bg-dark-light rounded-xl overflow-hidden hover:shadow-apple-hover transition-all duration-300"> <div class="md:flex"> <div class="md:w-1/3 image-container" style="overflow:hidden;max-height:180px;min-height:120px;"> <a href="/ai/rsjj.html" class="block w-full h-full"> <img data-src="https://cdn.yyp.net/diwuai/news/cc3ead9cb51ebc1dcd6b2f32ea92e1a6.jpg" alt="秀米和135编辑器哪个模板多?2025最新版模板库数量与风格测评" class="w-full h-full object-cover rounded-lg lazy" style="display:block;max-height:180px;min-height:120px;object-fit:cover;" onerror="this.style.display='none'; this.parentElement.style.backgroundColor='#666';"> </a> </div> <div class="md:w-2/3 p-4"> <h3 class="font-bold text-lg mb-2 hover:text-primary transition-colors"> <a href="/ai/rsjj.html">秀米和135编辑器哪个模板多?2025最新版模板库数量与风格测评</a> </h3> <p class="text-gray-400 text-sm mb-3 line-clamp-2">🔍 秀米和 135 编辑器哪个模板多?2025 最新版模板库数量与风格测评 一、模板数量对比:135 编辑器以绝对优势领先 从最新数据来看,135 编辑器的模板库规模远超秀米。截至 2025 年,13...</p> <div class="flex items-center text-xs text-gray-500"> <span><i class="fa fa-clock-o mr-1"></i>2025-05-27</span> <span class="mx-2">•</span> <span><i class="fa fa-eye mr-1"></i>6.9k</span> </div> </div> </div> </div><div class="related-article bg-dark-light rounded-xl overflow-hidden hover:shadow-apple-hover transition-all duration-300"> <div class="md:flex"> <div class="md:w-1/3 image-container" style="overflow:hidden;max-height:180px;min-height:120px;"> <a href="/ai/nnrnk.html" class="block w-full h-full"> <img data-src="https://cdn.yyp.net/diwuai/news/f3f8c825685a477ebf5b9a9d17c74a5f.jpg" alt="论文会被AI检测工具误判吗?朱雀大模型如何降低误报率" class="w-full h-full object-cover rounded-lg lazy" style="display:block;max-height:180px;min-height:120px;object-fit:cover;" onerror="this.style.display='none'; this.parentElement.style.backgroundColor='#666';"> </a> </div> <div class="md:w-2/3 p-4"> <h3 class="font-bold text-lg mb-2 hover:text-primary transition-colors"> <a href="/ai/nnrnk.html">论文会被AI检测工具误判吗?朱雀大模型如何降低误报率</a> </h3> <p class="text-gray-400 text-sm mb-3 line-clamp-2">📄 论文被 AI 检测工具误判有多常见?​最近在学术圈逛,总能听到类似的抱怨。有位教授说,他指导的研究生初稿里,一段关于古典文学意象分析的内容,被某检测工具判定为 70% AI 生成。那段文字明明是学...</p> <div class="flex items-center text-xs text-gray-500"> <span><i class="fa fa-clock-o mr-1"></i>2025-06-09</span> <span class="mx-2">•</span> <span><i class="fa fa-eye mr-1"></i>1.9k</span> </div> </div> </div> </div><div class="related-article bg-dark-light rounded-xl overflow-hidden hover:shadow-apple-hover transition-all duration-300"> <div class="md:flex"> <div class="md:w-1/3 image-container" style="overflow:hidden;max-height:180px;min-height:120px;"> <a href="/ai/ntmme.html" class="block w-full h-full"> <img data-src="https://cdn.yyp.net/diwuai/news/4409b9e3ef3122a869feda60535c0e91.jpg" alt="论文AI率降不下来?试试这个“颠倒重组”的改写技巧" class="w-full h-full object-cover rounded-lg lazy" style="display:block;max-height:180px;min-height:120px;object-fit:cover;" onerror="this.style.display='none'; this.parentElement.style.backgroundColor='#666';"> </a> </div> <div class="md:w-2/3 p-4"> <h3 class="font-bold text-lg mb-2 hover:text-primary transition-colors"> <a href="/ai/ntmme.html">论文AI率降不下来?试试这个“颠倒重组”的改写技巧</a> </h3> <p class="text-gray-400 text-sm mb-3 line-clamp-2">📌 先搞懂 AI 检测在 “怕” 什么​很多人改论文时总陷入一个误区,以为把长句拆短、换几个同义词就能骗过 AI 检测。试了几次发现重复率还是居高不下,就开始怀疑是不是检测系统有问题。其实啊,现在的 ...</p> <div class="flex items-center text-xs text-gray-500"> <span><i class="fa fa-clock-o mr-1"></i>2025-03-27</span> <span class="mx-2">•</span> <span><i class="fa fa-eye mr-1"></i>846</span> </div> </div> </div> </div><div class="related-article bg-dark-light rounded-xl overflow-hidden hover:shadow-apple-hover transition-all duration-300"> <div class="md:flex"> <div class="md:w-1/3 image-container" style="overflow:hidden;max-height:180px;min-height:120px;"> <a href="/ai/ntsyn.html" class="block w-full h-full"> <img data-src="https://cdn.yyp.net/diwuai/news/db17f03b58dd445662de1e878bf8f638.jpg" alt="公众号排版神器135编辑器使用心得 | 资深运营干货分享" class="w-full h-full object-cover rounded-lg lazy" style="display:block;max-height:180px;min-height:120px;object-fit:cover;" onerror="this.style.display='none'; this.parentElement.style.backgroundColor='#666';"> </a> </div> <div class="md:w-2/3 p-4"> <h3 class="font-bold text-lg mb-2 hover:text-primary transition-colors"> <a href="/ai/ntsyn.html">公众号排版神器135编辑器使用心得 | 资深运营干货分享</a> </h3> <p class="text-gray-400 text-sm mb-3 line-clamp-2">🍀 135 编辑器基础功能:新手也能快速上手的核心优势 第一次用 135 编辑器是四年前,当时刚接手公司公众号,排版丑到被领导当众点名。试过 Word 直接复制、微信自带编辑器,要么格式全乱,要么丑得...</p> <div class="flex items-center text-xs text-gray-500"> <span><i class="fa fa-clock-o mr-1"></i>2025-05-25</span> <span class="mx-2">•</span> <span><i class="fa fa-eye mr-1"></i>2.5k</span> </div> </div> </div> </div><div class="related-article bg-dark-light rounded-xl overflow-hidden hover:shadow-apple-hover transition-all duration-300"> <div class="md:flex"> <div class="md:w-1/3 image-container" style="overflow:hidden;max-height:180px;min-height:120px;"> <a href="/ai/njtrr.html" class="block w-full h-full"> <img data-src="https://cdn.yyp.net/diwuai/news/a313016a45a88d8af2f13ce76a0a1ff4.jpg" alt="免费AI写作工具安全吗?隐私与数据保护问题深度解析" class="w-full h-full object-cover rounded-lg lazy" style="display:block;max-height:180px;min-height:120px;object-fit:cover;" onerror="this.style.display='none'; this.parentElement.style.backgroundColor='#666';"> </a> </div> <div class="md:w-2/3 p-4"> <h3 class="font-bold text-lg mb-2 hover:text-primary transition-colors"> <a href="/ai/njtrr.html">免费AI写作工具安全吗?隐私与数据保护问题深度解析</a> </h3> <p class="text-gray-400 text-sm mb-3 line-clamp-2">🛡️ 免费 AI 写作工具安全吗?隐私与数据保护问题深度解析 现在越来越多人喜欢用免费 AI 写作工具,毕竟不用花钱就能快速生成文章、文案,看起来挺方便。但大家心里肯定都有个疑问,这些工具到底安不安全...</p> <div class="flex items-center text-xs text-gray-500"> <span><i class="fa fa-clock-o mr-1"></i>2025-02-27</span> <span class="mx-2">•</span> <span><i class="fa fa-eye mr-1"></i>4.7k</span> </div> </div> </div> </div><div class="related-article bg-dark-light rounded-xl overflow-hidden hover:shadow-apple-hover transition-all duration-300"> <div class="md:flex"> <div class="md:w-1/3 image-container" style="overflow:hidden;max-height:180px;min-height:120px;"> <a href="/ai/kwymw.html" class="block w-full h-full"> <img data-src="https://cdn.yyp.net/diwuai/news/2ba821ea5f4a5f893cb38508b89074eb.jpg" alt="知网AI查重免费版vs付费版|功能差异与毕业论文检测选择" class="w-full h-full object-cover rounded-lg lazy" style="display:block;max-height:180px;min-height:120px;object-fit:cover;" onerror="this.style.display='none'; this.parentElement.style.backgroundColor='#666';"> </a> </div> <div class="md:w-2/3 p-4"> <h3 class="font-bold text-lg mb-2 hover:text-primary transition-colors"> <a href="/ai/kwymw.html">知网AI查重免费版vs付费版|功能差异与毕业论文检测选择</a> </h3> <p class="text-gray-400 text-sm mb-3 line-clamp-2">📌 基础功能对比:免费版能满足多少需求? 知网 AI 查重的免费版最近在学生圈里讨论度挺高。打开官网就能看到,免费版标注着 “每日限 1 次,单篇上限 5000 字”。这对于刚写完开题报告或者小论文的...</p> <div class="flex items-center text-xs text-gray-500"> <span><i class="fa fa-clock-o mr-1"></i>2025-02-03</span> <span class="mx-2">•</span> <span><i class="fa fa-eye mr-1"></i>400</span> </div> </div> </div> </div> </div> </section> </div> <!-- 右侧边栏 --> <div class="space-y-8"> <!-- 作者信息卡片 --> <div class="author-card bg-dark-light rounded-xl p-6"> <div class="flex items-center mb-4"> <img src="/ai/static/img/avatar.png" alt="作者头像" class="w-16 h-16 rounded-full mr-4"> <div> <h3 class="font-bold text-lg">AI Insight</h3> <p class="text-gray-400 text-sm">专栏作者</p> </div> </div> <p class="text-gray-300 text-sm mb-4">专注于AI技术前沿动态,为您带来最新的AIGC资讯和深度分析。</p> <div class="flex items-center justify-between text-sm text-gray-400"> <span><i class="fa fa-edit mr-1"></i>161 篇文章</span> <span><i class="fa fa-users mr-1"></i>2227 关注者</span> </div> <button class="w-full mt-4 bg-primary hover:bg-primary/90 text-white py-2 rounded-lg transition-colors"> + 关注作者 </button> </div> <!-- 热门文章 --> <div class="hot-articles bg-dark-light rounded-xl p-6"> <h3 class="text-lg font-bold mb-5 flex items-center"> <span class="bg-primary text-white text-xs w-5 h-5 rounded-full flex items-center justify-center mr-2"> <i class="fa fa-fire"></i> </span> 热门文章 </h3> <div class="space-y-4"> <div class="hot-article bg-dark rounded-lg p-4 mb-4 hover:bg-dark-light transition-colors"> <div class="flex"> <div class="w-20 h-16 rounded-lg overflow-hidden mr-3 flex-shrink-0"> <a href="/ai/nyjkt.html"> <img data-src="https://cdn.yyp.net/diwuai/news/bf5020424d5d4ba9eff1ea6220e52489.jpg" alt="2025年AI写头条号赚钱模式升级 | 多平台分发收益最大化" class="w-full h-full object-cover lazy" onerror="this.style.display='none'; this.parentElement.style.backgroundColor='#666';"> </a> </div> <div class="flex-1"> <h4 class="font-medium text-sm mb-1 line-clamp-2 hover:text-primary transition-colors"> <a href="/ai/nyjkt.html">2025年AI写头条号赚钱模式升级 | 多平台分发收益最大化</a> </h4> <div class="text-xs text-gray-400"> <span>06-20</span> <span class="mx-1">•</span> <span>3.9k 阅读</span> </div> </div> </div> </div><div class="hot-article bg-dark rounded-lg p-4 mb-4 hover:bg-dark-light transition-colors"> <div class="flex"> <div class="w-20 h-16 rounded-lg overflow-hidden mr-3 flex-shrink-0"> <a href="/ai/keytt.html"> <img data-src="https://cdn.yyp.net/diwuai/news/856ce2e774f46b0c405842677b369256.jpg" alt="毕业论文查重到底要花多少钱?一篇文章让你心中有数" class="w-full h-full object-cover lazy" onerror="this.style.display='none'; this.parentElement.style.backgroundColor='#666';"> </a> </div> <div class="flex-1"> <h4 class="font-medium text-sm mb-1 line-clamp-2 hover:text-primary transition-colors"> <a href="/ai/keytt.html">毕业论文查重到底要花多少钱?一篇文章让你心中有数</a> </h4> <div class="text-xs text-gray-400"> <span>06-20</span> <span class="mx-1">•</span> <span>2k 阅读</span> </div> </div> </div> </div><div class="hot-article bg-dark rounded-lg p-4 mb-4 hover:bg-dark-light transition-colors"> <div class="flex"> <div class="w-20 h-16 rounded-lg overflow-hidden mr-3 flex-shrink-0"> <a href="/ai/kjksw.html"> <img data-src="https://cdn.yyp.net/diwuai/news/c405e460342bb0aa5145eac0cc029e00.jpg" alt="AI写作辅助头条号创作的正确姿势|避免降权风险的技巧" class="w-full h-full object-cover lazy" onerror="this.style.display='none'; this.parentElement.style.backgroundColor='#666';"> </a> </div> <div class="flex-1"> <h4 class="font-medium text-sm mb-1 line-clamp-2 hover:text-primary transition-colors"> <a href="/ai/kjksw.html">AI写作辅助头条号创作的正确姿势|避免降权风险的技巧</a> </h4> <div class="text-xs text-gray-400"> <span>06-20</span> <span class="mx-1">•</span> <span>670 阅读</span> </div> </div> </div> </div> </div> </div> <!-- 最新文章 --> <div class="latest-articles bg-dark-light rounded-xl p-6"> <h3 class="text-lg font-bold mb-5 flex items-center"> <span class="bg-primary text-white text-xs w-5 h-5 rounded-full flex items-center justify-center mr-2"> <i class="fa fa-clock-o"></i> </span> 最新发表 </h3> <div class="space-y-3"> <div class="new-article flex items-center py-2 border-b border-gray-800 last:border-b-0"> <span class="text-primary font-bold text-sm mr-3 w-6">01</span> <div class="flex-1"> <h4 class="text-sm hover:text-primary transition-colors line-clamp-1"> <a href="/ai/emmwn.html" title="公众号推荐算法与“搜一搜”SEO的联动策略,获取双重流量">公众号推荐算法与“搜一搜”SEO的联动策略,获取双重流量</a> </h4> <div class="text-xs text-gray-400 mt-1"> 2025-06-28 </div> </div> </div><div class="new-article flex items-center py-2 border-b border-gray-800 last:border-b-0"> <span class="text-primary font-bold text-sm mr-3 w-6">02</span> <div class="flex-1"> <h4 class="text-sm hover:text-primary transition-colors line-clamp-1"> <a href="/ai/yrms.html" title="2025公众号托管服务方案,赚钱技巧与内容代运营全面升级">2025公众号托管服务方案,赚钱技巧与内容代运营全面升级</a> </h4> <div class="text-xs text-gray-400 mt-1"> 2025-06-28 </div> </div> </div><div class="new-article flex items-center py-2 border-b border-gray-800 last:border-b-0"> <span class="text-primary font-bold text-sm mr-3 w-6">03</span> <div class="flex-1"> <h4 class="text-sm hover:text-primary transition-colors line-clamp-1"> <a href="/ai/ktkmr.html" title="关于AI伪原创,你想知道的都在这!会被发现吗?文章还有用吗?">关于AI伪原创,你想知道的都在这!会被发现吗?文章还有用吗?</a> </h4> <div class="text-xs text-gray-400 mt-1"> 2025-06-28 </div> </div> </div><div class="new-article flex items-center py-2 border-b border-gray-800 last:border-b-0"> <span class="text-primary font-bold text-sm mr-3 w-6">04</span> <div class="flex-1"> <h4 class="text-sm hover:text-primary transition-colors line-clamp-1"> <a href="/ai/ntwjr.html" title="抖音直播带货话术|如何规避违禁词?用这个工具查一下">抖音直播带货话术|如何规避违禁词?用这个工具查一下</a> </h4> <div class="text-xs text-gray-400 mt-1"> 2025-06-28 </div> </div> </div><div class="new-article flex items-center py-2 border-b border-gray-800 last:border-b-0"> <span class="text-primary font-bold text-sm mr-3 w-6">05</span> <div class="flex-1"> <h4 class="text-sm hover:text-primary transition-colors line-clamp-1"> <a href="/ai/nksrj.html" title="AIGC内容检测平台的未来发展趋势 | AI原创度检测技术展望">AIGC内容检测平台的未来发展趋势 | AI原创度检测技术展望</a> </h4> <div class="text-xs text-gray-400 mt-1"> 2025-06-28 </div> </div> </div><div class="new-article flex items-center py-2 border-b border-gray-800 last:border-b-0"> <span class="text-primary font-bold text-sm mr-3 w-6">06</span> <div class="flex-1"> <h4 class="text-sm hover:text-primary transition-colors line-clamp-1"> <a href="/ai/knsss.html" title="2025最新Prompt Engineering教程,高级写作公式与原创秘诀">2025最新Prompt Engineering教程,高级写作公式与原创秘诀</a> </h4> <div class="text-xs text-gray-400 mt-1"> 2025-06-28 </div> </div> </div><div class="new-article flex items-center py-2 border-b border-gray-800 last:border-b-0"> <span class="text-primary font-bold text-sm mr-3 w-6">07</span> <div class="flex-1"> <h4 class="text-sm hover:text-primary transition-colors line-clamp-1"> <a href="/ai/jjmy.html" title="朱雀AI检测App隐私安全评测:本地处理还是云端?">朱雀AI检测App隐私安全评测:本地处理还是云端?</a> </h4> <div class="text-xs text-gray-400 mt-1"> 2025-06-28 </div> </div> </div><div class="new-article flex items-center py-2 border-b border-gray-800 last:border-b-0"> <span class="text-primary font-bold text-sm mr-3 w-6">08</span> <div class="flex-1"> <h4 class="text-sm hover:text-primary transition-colors line-clamp-1"> <a href="/ai/nnwme.html" title="2025年,代运营和自己运营的差距到底有多大?全面对比分析">2025年,代运营和自己运营的差距到底有多大?全面对比分析</a> </h4> <div class="text-xs text-gray-400 mt-1"> 2025-06-28 </div> </div> </div><div class="new-article flex items-center py-2 border-b border-gray-800 last:border-b-0"> <span class="text-primary font-bold text-sm mr-3 w-6">09</span> <div class="flex-1"> <h4 class="text-sm hover:text-primary transition-colors line-clamp-1"> <a href="/ai/kmmmw.html" title="AI内容检测免费工具有哪些?为什么我最终选择了付费的第五AI?">AI内容检测免费工具有哪些?为什么我最终选择了付费的第五AI?</a> </h4> <div class="text-xs text-gray-400 mt-1"> 2025-06-28 </div> </div> </div><div class="new-article flex items-center py-2 border-b border-gray-800 last:border-b-0"> <span class="text-primary font-bold text-sm mr-3 w-6">10</span> <div class="flex-1"> <h4 class="text-sm hover:text-primary transition-colors line-clamp-1"> <a href="/ai/ektek.html" title="小绿书养号失败的常见原因:对照检查,你的公众号养号策略对了吗?">小绿书养号失败的常见原因:对照检查,你的公众号养号策略对了吗?</a> </h4> <div class="text-xs text-gray-400 mt-1"> 2025-06-28 </div> </div> </div> </div> </div> <!-- 固定部分:从AI工具推荐开始 --> <div class="lg:sticky lg:top-24 lg:self-start lg:h-fit space-y-8"> <!-- AI工具推荐 --> <div class="bg-dark-light rounded-xl p-5"> <h3 class="text-lg font-bold mb-5">AI工具推荐</h3> <div class="space-y-4"> <!-- 工具1 --> <a href="https://www.diwuai.com/tools/rewrite-tool?inviteCode=8f14e45f" target="_blank" class="tool-item bg-dark rounded-lg p-3 flex items-center hover:border-l-4 hover:border-primary transition-all cursor-pointer block"> <div class="tool-icon w-10 h-10 rounded bg-primary/20 flex items-center justify-center text-primary"> <i class="fa fa-paint-brush"></i> </div> <div class="ml-3 flex-1"> <h4 class="font-medium text-sm">过降ai过朱雀检测</h4> <p class="text-gray-400 text-xs">100%消除AI痕迹,提升原创性</p> </div> <span class="ml-auto text-xs bg-primary/20 hover:bg-primary/30 text-primary px-2 py-1 rounded transition-colors"> 使用 </span> </a> <!-- 工具2 --> <a href="https://www.diwuai.com/tools/article-generate?inviteCode=8f14e45f" target="_blank" class="tool-item bg-dark rounded-lg p-3 flex items-center hover:border-l-4 hover:border-primary transition-all cursor-pointer block"> <div class="tool-icon w-10 h-10 rounded bg-primary/20 flex items-center justify-center text-primary"> <i class="fa fa-file-text-o"></i> </div> <div class="ml-3 flex-1"> <h4 class="font-medium text-sm">AI写作助手 批量创作</h4> <p class="text-gray-400 text-xs">100%写出没有ai味文章 可智能配图</p> </div> <span class="ml-auto text-xs bg-primary/20 hover:bg-primary/30 text-primary px-2 py-1 rounded transition-colors"> 使用 </span> </a> <!-- 工具3 --> <a href="https://www.diwuai.com/tools/ai-text-detection?inviteCode=8f14e45f" target="_blank" class="tool-item bg-dark rounded-lg p-3 flex items-center hover:border-l-4 hover:border-primary transition-all cursor-pointer block"> <div class="tool-icon w-10 h-10 rounded bg-primary/20 flex items-center justify-center text-primary"> <i class="fa fa-code"></i> </div> <div class="ml-3 flex-1"> <h4 class="font-medium text-sm">朱雀ai大模型检测无限版</h4> <p class="text-gray-400 text-xs">和朱雀检测结果相似度高达99%</p> </div> <span class="ml-auto text-xs bg-primary/20 hover:bg-primary/30 text-primary px-2 py-1 rounded transition-colors"> 使用 </span> </a> <!-- 工具4 --> <a href="https://www.diwuai.com/tools/text-similarity?inviteCode=8f14e45f" target="_blank" class="tool-item bg-dark rounded-lg p-3 flex items-center hover:border-l-4 hover:border-primary transition-all cursor-pointer block"> <div class="tool-icon w-10 h-10 rounded bg-primary/20 flex items-center justify-center text-primary"> <i class="fa fa-video-camera"></i> </div> <div class="ml-3 flex-1"> <h4 class="font-medium text-sm">文章原创度检测对比</h4> <p class="text-gray-400 text-xs">AI大模型检测文本相似度</p> </div> <span class="ml-auto text-xs bg-primary/20 hover:bg-primary/30 text-primary px-2 py-1 rounded transition-colors"> 使用 </span> </a> <!-- 工具5 --> <a href="https://www.diwuai.com/md/?inviteCode=8f14e45f" target="_blank" class="tool-item bg-dark rounded-lg p-3 flex items-center hover:border-l-4 hover:border-primary transition-all cursor-pointer block"> <div class="tool-icon w-10 h-10 rounded bg-primary/20 flex items-center justify-center text-primary"> <i class="fa fa-music"></i> </div> <div class="ml-3 flex-1"> <h4 class="font-medium text-sm">markdown编辑器</h4> <p class="text-gray-400 text-xs">AI智能配图 免费使用</p> </div> <span class="ml-auto text-xs bg-primary/20 hover:bg-primary/30 text-primary px-2 py-1 rounded transition-colors"> 使用 </span> </a> </div> </div> <!-- 网站介绍卡片 --> <div class="bg-gradient-to-br from-primary/30 to-dark rounded-xl p-5 text-center"> <div class="w-16 h-16 bg-primary/20 rounded-full flex items-center justify-center text-primary mx-auto mb-4"> <i class="fa fa-info-circle text-2xl"></i> </div> <h3 class="font-bold mb-2">关于AIGC资讯</h3> <p class="text-gray-300 text-sm mb-4">专业的AI生成内容资讯平台,提供最新AIGC技术动态、工具评测和行业洞察</p> <a href="https://www.diwuai.com?inviteCode=8f14e45f" target="_blank" class="bg-primary hover:bg-primary/90 text-white hover:text-white w-full py-2 rounded-lg transition-colors block text-center no-underline"> 立即注册 </a> <p class="text-gray-400 text-xs mt-3">加入我们,探索AI时代的无限可能</p> </div> </div> </div> </div> </div> <!-- JavaScript 功能 --> <script> // 字体大小调整 document.addEventListener('DOMContentLoaded', function() { const content = document.getElementById('article-content'); const fontDec = document.getElementById('font-dec'); const fontInt = document.getElementById('font-int'); const fontInc = document.getElementById('font-inc'); let fontSize = 16; // 默认字体大小 fontDec.addEventListener('click', function(e) { e.preventDefault(); if (fontSize > 12) { fontSize -= 2; content.style.fontSize = fontSize + 'px'; } }); fontInt.addEventListener('click', function(e) { e.preventDefault(); fontSize = 16; content.style.fontSize = fontSize + 'px'; }); fontInc.addEventListener('click', function(e) { e.preventDefault(); if (fontSize < 24) { fontSize += 2; content.style.fontSize = fontSize + 'px'; } }); }); // 分享功能 function Share(pType) { var pTitle = "设计师必备!Potlab SVG 动画图标库免费下载,支持矢量自定义颜色大小"; var pImage = "https://www.aishici8.comhttps://cdn.yyp.net/wp-content/uploads/2025/06/c3857883d04af4f6358903c314084309.jpg"; var pContent = "今天给大家带来一款超级实用的宝藏级工具——PotlabSVG动画图标库,它简直是设计师的「效率神器」!作为一名在互联网行业摸爬滚打了10年的老司机,我测评过无数设计资源平台,而Potlab凭借完全免费"; var pUrl = window.location.href; switch (pType) { case "sina": var url = "//service.weibo.com/share/share.php?title=" + encodeURIComponent("「" + pTitle + "」" + pContent + " 阅读详情" + pUrl) + "&pic=" + pImage + "&appkey=&searchPic=true"; window.open(url, '_blank', 'width=600,height=400'); break; case "tqq": var url = "//connect.qq.com/widget/shareqq/index.html?url=" + encodeURIComponent(pUrl) + "&title=" + encodeURIComponent(pTitle) + "&pics=" + pImage; window.open(url, '_blank', 'width=600,height=400'); break; } } // 点赞功能 document.addEventListener('DOMContentLoaded', function() { const likeBtn = document.querySelector('.action-btn'); if (likeBtn) { likeBtn.addEventListener('click', function() { const span = this.querySelector('span'); const currentCount = parseInt(span.textContent.match(/\d+/)[0]); span.textContent = `点赞 (${currentCount + 1})`; this.classList.add('bg-primary/30'); this.classList.remove('bg-primary/20'); }); } }); // 移动端菜单功能已在 new-theme.js 中处理 </script> <!-- 海报生成功能 --> <script src="/ai/static/js/html2canvas.min.js"></script> <!-- 海报生成功能 --> <script> var poster_open = "on"; var txt1 = "长按识别二维码查看详情"; var txt2 = "前沿AIGC资讯"; var comiis_poster_start_wlat = 0; document.addEventListener('DOMContentLoaded', function() { const posterBtns = document.querySelectorAll('.comiis_poster_a'); posterBtns.forEach(btn => { btn.addEventListener('click', function(e) { e.preventDefault(); show_comiis_poster_ykzn(); }); }); }); function show_comiis_poster_ykzn() { if (comiis_poster_start_wlat == 0) { comiis_poster_start_wlat = 1; // 创建加载提示 const loadingDiv = document.createElement('div'); loadingDiv.className = 'fixed inset-0 bg-black/80 flex items-center justify-center z-50'; loadingDiv.innerHTML = ` <div class="bg-dark-light rounded-xl p-8 text-center"> <div class="animate-spin w-8 h-8 border-2 border-primary border-t-transparent rounded-full mx-auto mb-4"></div> <p class="text-white">正在生成海报,请稍候...</p> </div> `; document.body.appendChild(loadingDiv); // 创建海报内容 const posterContent = document.createElement('div'); posterContent.className = 'poster-content'; posterContent.style.cssText = ` position: absolute; left: -9999px; top: -9999px; width: 600px; background: linear-gradient(135deg, #1A1A1A 0%, #2C2C2E 100%); padding: 40px; border-radius: 20px; color: white; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; `; posterContent.innerHTML = ` <div style="text-align: center; margin-bottom: 30px;"> <img src="https://cdn.yyp.net/wp-content/uploads/2025/06/c3857883d04af4f6358903c314084309.jpg" style="width: 100%; height: 300px; object-fit: cover; border-radius: 15px; margin-bottom: 20px;"> <h1 style="font-size: 24px; font-weight: bold; margin: 0 0 15px 0; line-height: 1.4;">设计师必备!Potlab SVG 动画图标库免费下载,支持矢量自定义颜色大小</h1> <p style="color: #8E8E93; font-size: 16px; line-height: 1.6; margin: 0;">今天给大家带来一款超级实用的宝藏级工具——PotlabSVG动画图标库,它简直是设计师的「效率神器」!作为一名在互联网行业摸爬滚打了10年的老司机,我测评过无数设计资源平台,而Potlab凭借完全免费、矢量可定制、动画效果丰富这三大核心优势,成功跻身我的「年度最佳工具清单」。如果你还在为找高质量的图...</p> </div> <div style="display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #404040; padding-top: 20px;"> <div> <div style="color: #FF3B30; font-weight: bold; font-size: 18px;">前沿AIGC资讯</div> <div style="color: #8E8E93; font-size: 14px;">专业AI生成内容资讯平台</div> </div> <div style="text-align: center;"> <img src="/ai/plugin/api.php?url=https%3A%2F%2Fwww.aishici8.com%2Fai%2Fyjktw.html" style="width: 80px; height: 80px; border-radius: 10px;"> <div style="color: #8E8E93; font-size: 12px; margin-top: 5px;"></div> </div> </div> `; document.body.appendChild(posterContent); // 生成海报 setTimeout(() => { html2canvas(posterContent, { scale: 2, useCORS: true, backgroundColor: null }).then(canvas => { document.body.removeChild(loadingDiv); document.body.removeChild(posterContent); // 显示生成的海报 const posterModal = document.createElement('div'); posterModal.className = 'fixed inset-0 bg-black/80 flex items-center justify-center z-50 p-4'; posterModal.innerHTML = ` <div class="bg-dark-light rounded-xl p-6 max-w-md w-full text-center"> <h3 class="text-xl font-bold mb-4">海报生成成功</h3> <img src="${canvas.toDataURL('image/jpeg', 0.9)}" class="w-full rounded-lg mb-4" style="max-height: 400px; object-fit: contain;"> <p class="text-gray-400 text-sm mb-4">长按上图保存到相册分享</p> <button class="bg-primary hover:bg-primary/90 text-white px-6 py-2 rounded-lg transition-colors" onclick="this.closest('.fixed').remove(); comiis_poster_start_wlat = 0;"> 关闭 </button> </div> `; document.body.appendChild(posterModal); // 点击背景关闭 posterModal.addEventListener('click', function(e) { if (e.target === posterModal) { document.body.removeChild(posterModal); comiis_poster_start_wlat = 0; } }); }).catch(error => { document.body.removeChild(loadingDiv); document.body.removeChild(posterContent); alert('海报生成失败,请重试'); comiis_poster_start_wlat = 0; }); }, 1000); } } </script> <!-- 统计代码 --> <script src="/ai/tj.php?id=yjktw"></script> <!-- 页脚 --> <footer class="footer bg-dark-light border-t border-gray-800 mt-12"> <div class="p-4 md:p-10"> <div class="grid grid-cols-1 md:grid-cols-4 gap-6 md:gap-8"> <div> <h3 class="text-xl font-bold flex items-center mb-4"> <span class="text-primary mr-2"><i class="fa fa-bolt"></i></span> <span>前沿AIGC资讯</span> </h3> <p class="text-gray-400 text-sm mb-4">追踪AIGC前沿动态,洞察AI生成内容发展趋势。专业的AI生成内容资讯平台,为您提供最新AIGC技术动态、AI工具评测、深度分析和行业洞察。</p> <div class="flex space-x-4"> <a href="#" class="text-gray-400 hover:text-primary transition-colors" title="微博"><i class="fa fa-weibo"></i></a> <a href="#" class="text-gray-400 hover:text-primary transition-colors" title="微信"><i class="fa fa-wechat"></i></a> <a href="#" class="text-gray-400 hover:text-primary transition-colors" title="QQ"><i class="fa fa-qq"></i></a> <a href="/ai/feed.php" class="text-gray-400 hover:text-primary transition-colors" title="RSS订阅"><i class="fa fa-rss"></i></a> </div> </div> <div> <h4 class="font-medium mb-4">内容分类</h4> <div class="grid grid-cols-5 gap-2 text-sm text-gray-400"> <a target="_blank" href="https://www.diwuai.com/md/?inviteCode=8f14e45f" class="hover:text-primary transition-colors text-center">#markdown编辑器</a> <a target="_blank" href="https://www.diwuai.com/prompt/?inviteCode=8f14e45f" class="hover:text-primary transition-colors text-center">#提示词优化器</a> <a target="_blank" href="https://www.diwuai.com/tools/rewrite-tool?inviteCode=8f14e45f" class="hover:text-primary transition-colors text-center">#降低ai过朱雀检测</a> <a target="_blank" href="https://www.diwuai.com/tools/ai-text-detection?inviteCode=8f14e45f" class="hover:text-primary transition-colors text-center">#朱雀大模型检测</a> <a target="_blank" href="https://www.diwuai.com/tools/sensitive-check?inviteCode=8f14e45f" class="hover:text-primary transition-colors text-center">#违禁词免费检测</a> <a target="_blank" href="https://www.diwuai.com/tools/article-generate?inviteCode=8f14e45f" class="hover:text-primary transition-colors text-center">#零ai值文章创作</a> <a target="_blank" href="https://www.diwuai.com/tools/article-batch-generate?inviteCode=8f14e45f" class="hover:text-primary transition-colors text-center">#文章批量创作全自动</a> <a target="_blank" href="https://www.diwuai.com/tools/title-generate?inviteCode=8f14e45f" class="hover:text-primary transition-colors text-center">#自媒体标题创作神器</a> </div> </div> <div> <h4 class="font-medium mb-4">站点导航</h4> <div class="grid grid-cols-5 gap-2 text-sm text-gray-400"> <a target="_blank" href="/ai/" class="hover:text-primary transition-colors text-center">首页</a> <a target="_blank" href="https://www.diwuai.com/?inviteCode=8f14e45f" class="hover:text-primary transition-colors text-center">第五ai</a> <a target="_blank" href="https://www.diwuai.com/search/hot-articles?inviteCode=8f14e45f" class="hover:text-primary transition-colors text-center">自媒体库</a> <a target="_blank" href="https://www.diwuai.com/search/low-read?inviteCode=8f14e45f" class="hover:text-primary transition-colors text-center">低粉爆文</a> <a target="_blank" href="https://www.diwuai.com/hotlist?inviteCode=8f14e45f" class="hover:text-primary transition-colors text-center">全网热搜词</a> <a target="_blank" href="https://www.diwuai.com/rank?inviteCode=8f14e45f" class="hover:text-primary transition-colors text-center">公众号榜单</a> </div> </div> <div> <h4 class="font-medium mb-4">联系信息</h4> <ul class="space-y-2 text-sm text-gray-400"> <li class="flex items-center"><i class="fa fa-envelope-o mr-2 text-primary"></i> contact@aiinsight.com</li> <li class="flex items-center"><i class="fa fa-map-marker mr-2 text-primary"></i> 中国·北京</li> <li class="flex items-center"><i class="fa fa-clock-o mr-2 text-primary"></i> 7×24小时服务</li> </ul> <div class="mt-4"> <p class="text-xs text-gray-500 mb-2">安全运行 <span id="site-days">0</span> 天</p> </div> </div> </div> <div class="border-t border-gray-800 mt-8 pt-6 text-center text-gray-500 text-sm"> <p class="mb-2"> Copyright <i class="fa fa-copyright"></i> 2025 前沿AIGC资讯. 保留所有权利。 </p> <p class="text-xs"> 本站内容来源于互联网,仅供学习交流使用。如有侵权,请联系我们删除。 <a href="#" class="text-primary hover:text-primary/80 ml-2">隐私政策</a> <a href="#" class="text-primary hover:text-primary/80 ml-2">使用条款</a> </p> </div> </div> </footer> </main> </div> <!-- 返回顶部按钮 --> <div class="fixed bottom-6 right-6 z-50"> <button id="back-to-top" class="bg-primary hover:bg-primary/90 text-white w-12 h-12 rounded-full shadow-lg flex items-center justify-center transition-all duration-300 opacity-0 invisible transform translate-y-4"> <i class="fa fa-angle-up text-lg"></i> </button> </div> <div id="ly_cache" data-id="yjktw"></div> </body> </html>