现在看来,确实有点拉了,回复风格变好了不少,但是实际能力确实捉急,等qwen团队发布正式版本吧
怎么感觉qwen3max thinking拉完了,阿里不会拉托大的吧,如图:
代码
<svg width="300" height="300" viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- 自行车 -->
<circle cx="100" cy="240" r="20" fill="none" stroke="#333" stroke-width="3"/> <!-- 前轮 -->
<circle cx="220" cy="240" r="20" fill="none" stroke="#333" stroke-width="3"/> <!-- 后轮 -->
<circle cx="100" cy="240" r="8" fill="#555"/> <!-- 前轮轴心 -->
<circle cx="220" cy="240" r="8" fill="#555"/> <!-- 后轮轴心 -->
<!-- 车架 -->
<path d="M 100 240 L 100 180 L 150 140 L 200 170 L 220 240" fill="none" stroke="#E63946" stroke-width="4" stroke-linejoin="round"/>
<path d="M 150 140 L 150 110 L 120 90" fill="none" stroke="#E63946" stroke-width="3" stroke-linecap="round"/> <!-- 车把 -->
<rect x="195" y="160" width="25" height="10" rx="3" fill="#333" transform="rotate(-15 208 165)"/> <!-- 车座 -->
<!-- 踏板 -->
<line x1="200" y1="210" x2="235" y2="200" stroke="#333" stroke-width="4"/>
<line x1="200" y1="210" x2="165" y2="220" stroke="#333" stroke-width="4"/>
<circle cx="235" cy="200" r="6" fill="#1D3557"/>
<circle cx="165" cy="220" r="6" fill="#1D3557"/>
<!-- 鹈鹕身体 -->
<ellipse cx="185" cy="155" rx="25" ry="20" fill="#A8DADC" transform="rotate(-10 185 155)"/> <!-- 身体 -->
<ellipse cx="145" cy="150" rx="18" ry="22" fill="#A8DADC" transform="rotate(15 145 150)"/> <!-- 胸部 -->
<!-- 鹈鹕头部 -->
<circle cx="115" cy="135" r="15" fill="#A8DADC"/> <!-- 头部 -->
<ellipse cx="80" cy="130" rx="25" ry="6" fill="#FF9E6D" transform="rotate(-5 80 130)"/> <!-- 长喙 -->
<circle cx="110" cy="130" r="3" fill="#1D3557"/> <!-- 眼睛 -->
<ellipse cx="80" cy="124" rx="3" ry="2" fill="#1D3557" transform="rotate(-5 80 124)"/> <!-- 喙尖 -->
<!-- 鹈鹕翅膀 -->
<path d="M 160 165 Q 175 140 195 160 Q 180 175 160 165" fill="#457B9D" stroke="#1D3557" stroke-width="1.5"/> <!-- 左翼(展开) -->
<path d="M 130 165 Q 120 155 135 145 Q 145 155 130 165" fill="#457B9D" stroke="#1D3557" stroke-width="1.5" transform="translate(-5,5)"/> <!-- 右翼(收起) -->
<!-- 鹈鹕腿部 -->
<line x1="185" y1="175" x2="210" y2="195" stroke="#FF9E6D" stroke-width="5" stroke-linecap="round"/> <!-- 左腿 -->
<line x1="185" y1="175" x2="160" y2="200" stroke="#FF9E6D" stroke-width="5" stroke-linecap="round" stroke-dasharray="4 3"/> <!-- 右腿(虚线表示在后方) -->
<!-- 脚踏细节 -->
<circle cx="210" cy="195" r="5" fill="#FF9E6D"/> <!-- 左脚 -->
<circle cx="160" cy="200" r="5" fill="#FF9E6D"/> <!-- 右脚 -->
<!-- 装饰 -->
<circle cx="150" cy="100" r="12" fill="yellow" stroke="#FFD93D" stroke-width="2"/> <!-- 太阳 -->
<text x="245" y="40" font-family="Arial" font-size="10" fill="#E63946" font-weight="bold">SVG</text>
</svg>

12 个赞
你还别说,我还挺喜欢这个SVG的。
有一种几何+抽象的美感。
完美击中我。
4 个赞
我让它给自己画了个自画像,还带转的,挺酷炫的呢,看起来也没那么差
<svg width="400" height="400" viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg">
<!-- 渐变背景 -->
<defs>
<radialGradient id="bgGradient" cx="50%" cy="50%" r="70%">
<stop offset="0%" stop-color="#1a2a6c" />
<stop offset="100%" stop-color="#2c003e" />
</radialGradient>
<!-- 发光效果 -->
<filter id="glow" x="-30%" y="-30%" width="160%" height="160%">
<feGaussianBlur stdDeviation="8" result="blur" />
<feComposite in="SourceGraphic" in2="blur" operator="over" />
</filter>
<!-- 电路板纹理 -->
<pattern id="circuitPattern" width="40" height="40" patternUnits="userSpaceOnUse">
<path d="M0 20 L40 20 M20 0 L20 40" stroke="#4a6fa5" stroke-width="0.5" opacity="0.3"/>
<circle cx="20" cy="20" r="2" fill="#6a89cc" opacity="0.4"/>
</pattern>
<!-- 思维光晕渐变 -->
<radialGradient id="mindGlow" cx="50%" cy="50%" r="70%">
<stop offset="0%" stop-color="#00d2ff" stop-opacity="0.8"/>
<stop offset="100%" stop-color="#3a7bd5" stop-opacity="0"/>
</radialGradient>
</defs>
<!-- 背景 -->
<rect width="400" height="400" fill="url(#bgGradient)"/>
<!-- 电路板底纹 -->
<circle cx="200" cy="200" r="150" fill="url(#circuitPattern)" opacity="0.2"/>
<!-- 思维核心 -->
<circle cx="200" cy="200" r="100" fill="url(#mindGlow)" filter="url(#glow)"/>
<!-- 数据流光环 -->
<circle cx="200" cy="200" r="120" fill="none" stroke="#00f3ff" stroke-width="2" stroke-dasharray="15,5" opacity="0.8">
<animateTransform attributeName="transform" type="rotate" from="0 200 200" to="360 200 200" dur="8s" repeatCount="indefinite"/>
</circle>
<!-- 抽象大脑结构 -->
<g transform="translate(200, 200)" filter="url(#glow)">
<!-- 左脑:逻辑结构 -->
<path d="M-80,-40 C-80,-70 -40,-90 0,-90 C40,-90 80,-70 80,-40 C80,0 50,30 0,40 C-50,30 -80,0 -80,-40"
fill="none" stroke="#00f3ff" stroke-width="3" opacity="0.9"/>
<!-- 右脑:创意结构 -->
<path d="M-60,-20 C-60,-40 -20,-60 0,-60 C20,-60 60,-40 60,-20 C60,5 30,25 0,30 C-30,25 -60,5 -60,-20"
fill="none" stroke="#ff6ec4" stroke-width="2.5" opacity="0.85"/>
<!-- 连接神经 -->
<g stroke="#7effe8" stroke-width="1.5" opacity="0.7">
<line x1="-50" y1="-10" x2="-20" y2="-25"/>
<line x1="50" y1="-10" x2="20" y2="-25"/>
<line x1="-40" y1="15" x2="-10" y2="10"/>
<line x1="40" y1="15" x2="10" y2="10"/>
<line x1="-25" y1="25" x2="25" y2="25"/>
</g>
</g>
<!-- AI核心标识 -->
<circle cx="200" cy="200" r="30" fill="none" stroke="#00d2ff" stroke-width="2.5" opacity="0.9"/>
<text x="200" y="210" font-family="Arial, sans-serif" font-size="28" font-weight="bold"
fill="#00d2ff" text-anchor="middle" dominant-baseline="middle" filter="url(#glow)">AI</text>
<!-- 数据流动画 -->
<g opacity="0.8">
<circle cx="200" cy="200" r="45" fill="none" stroke="#ff6ec4" stroke-width="1.5" stroke-dasharray="5,5">
<animateTransform attributeName="transform" type="rotate" from="0 200 200" to="-360 200 200" dur="12s" repeatCount="indefinite"/>
</circle>
<circle cx="200" cy="200" r="60" fill="none" stroke="#7effe8" stroke-width="1" stroke-dasharray="8,4">
<animateTransform attributeName="transform" type="rotate" from="360 200 200" to="0 200 200" dur="15s" repeatCount="indefinite"/>
</circle>
</g>
<!-- 光点粒子 -->
<g fill="#fff" opacity="0.8">
<circle cx="150" cy="120" r="2">
<animate attributeName="r" values="1;3;1" dur="3s" repeatCount="indefinite"/>
</circle>
<circle cx="260" cy="140" r="1.5">
<animate attributeName="r" values="1;2.5;1" dur="4s" repeatCount="indefinite" begin="0.5s"/>
</circle>
<circle cx="130" cy="250" r="2">
<animate attributeName="r" values="1;3;1" dur="3.5s" repeatCount="indefinite" begin="1s"/>
</circle>
<circle cx="270" cy="240" r="1.8">
<animate attributeName="r" values="1;2.8;1" dur="2.8s" repeatCount="indefinite" begin="1.5s"/>
</circle>
<circle cx="220" cy="100" r="1.2">
<animate attributeName="r" values="0.8;2;0.8" dur="2.5s" repeatCount="indefinite" begin="0.2s"/>
</circle>
</g>
<!-- 标题 -->
<text x="200" y="350" font-family="Arial, sans-serif" font-size="20" font-weight="bold"
fill="#00f3ff" text-anchor="middle" opacity="0.9">抽象思维之光</text>
<!-- 副标题 -->
<text x="200" y="375" font-family="Arial, sans-serif" font-size="14"
fill="#ff6ec4" text-anchor="middle" opacity="0.85">— 无限连接 · 持续进化 —</text>
</svg>
比起来,我让我的chatgpt5 thinking 给自己画的自画像就相当抽象了
2 个赞
这个我给满昏,目前最得我心的一个~~~ 意境有了,撒把狂飙