DeepSeek抽象测试贴,佬把你们的结果放上来。
- 内容介绍
- 文章标签
- 相关推荐
之前用其他模型生成魔方,静态完整,但是一旦动起来动画就乱了,这次用deepseek测试思考了66秒,做出来静态,动态看起来都还不错,感觉能前端编程替用了。各位佬把你们的各种抽象测试结果放在评论区。QQ上录制视频里面有录制动图。
`【任务】:创建一个单文件花开视觉模拟器。
【技术要求】:
- 零依赖:仅使用原生 HTML、CSS、JavaScript,禁止任何外部库(如 Three.js)。
- 单文件:所有代码都在一个 HTML 文件内。
- 渲染:使用 CSS 3D Transforms 实现花开效果。`
`
3x3 魔方模拟器 - 纯CSS 3D实现 * { user-select: none; -webkit-tap-highlight-color: transparent; } body {
margin: 0;
min-height: 100vh;
background: linear-gradient(145deg, #1a2a3a 0%, #0f1a24 100%);
display: flex;
justify-content: center;
align-items: center;
font-family: 'Segoe UI', 'Poppins', 'Roboto', system-ui, sans-serif;
overflow: hidden;
}
/* 主容器 */
.app {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100%;
height: 100vh;
position: relative;
}
/* 3D 舞台 */
.scene {
perspective: 1200px;
perspective-origin: 50% 50%;
width: 500px;
height: 500px;
display: flex;
justify-content: center;
align-items: center;
cursor: grab;
margin: 20px auto;
}
.scene:active {
cursor: grabbing;
}
/* 魔方整体容器 - 鼠标控制旋转 */
.rubiks-cube {
position: relative;
width: 150px;
height: 150px;
transform-style: preserve-3d;
transition: transform 0.05s linear;
will-change: transform;
}
/* 每个小块的公共样式 */
.cubie {
position: absolute;
width: 50px;
height: 50px;
transform-style: preserve-3d;
backface-visibility: visible;
transition: none;
}
/* 每个面通用样式 */
.face {
position: absolute;
width: 50px;
height: 50px;
border: 1px solid rgba(0,0,0,0.25);
box-sizing: border-box;
box-shadow: inset 0 0 2px rgba(0,0,0,0.1);
background-color: #222;
}
/* 光泽效果 */
.face::after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.25) 0%, rgba(0,0,0,0.05) 80%);
pointer-events: none;
}
/* 控制面板 */
.controls {
background: rgba(30, 40, 50, 0.85);
backdrop-filter: blur(10px);
border-radius: 48px;
padding: 12px 24px;
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 10px;
margin-top: 20px;
margin-bottom: 20px;
box-shadow: 0 10px 25px rgba(0,0,0,0.3);
border: 1px solid rgba(255,255,255,0.2);
max-width: 90vw;
}
button {
background: #2c3e44;
border: none;
color: white;
font-size: 1.2rem;
font-weight: bold;
width: 58px;
height: 58px;
border-radius: 40px;
cursor: pointer;
transition: all 0.2s ease;
box-shadow: 0 4px 8px rgba(0,0,0,0.3);
font-family: monospace;
letter-spacing: 1px;
backdrop-filter: blur(4px);
background: linear-gradient(145deg, #34495e, #2c3e50);
border-bottom: 2px solid #1abc9c;
}
button:active {
transform: scale(0.94);
box-shadow: 0 1px 3px rgba(0,0,0,0.4);
}
.action-btn {
background: linear-gradient(145deg, #e67e22, #d35400);
border-bottom-color: #f1c40f;
width: auto;
padding: 0 20px;
}
.reset-btn {
background: linear-gradient(145deg, #95a5a6, #7f8c8d);
border-bottom-color: #ecf0f1;
}
.shuffle-btn {
background: linear-gradient(145deg, #9b59b6, #8e44ad);
border-bottom-color: #f39c12;
}
.group-title {
color: #ecf0f1;
font-size: 0.7rem;
margin: 0 5px;
align-self: center;
font-weight: bold;
letter-spacing: 1px;
}
@media (max-width: 680px) {
button {
width: 48px;
height: 48px;
font-size: 1rem;
}
.controls {
gap: 8px;
padding: 12px 16px;
}
.scene {
width: 380px;
height: 380px;
}
.rubiks-cube {
width: 120px;
height: 120px;
}
.cubie, .face {
width: 40px;
height: 40px;
}
}
</style>
基本层
U
U'
R
R'
F
F'
L
L'
B
B'
D
D'
🎲 打乱
⟳ 重置
`
网友解答:
--【壹】--:
尝试了一下,完成度挺高的。没有出现奇怪的转动,可能是使用了 threejs.
--【贰】--:
(帖子已被作者删除)
--【叁】--:
之前的爸爸女儿题只会答一些莫名其妙的话,今天终于想出来了
image1200×4231 498 KB
--【肆】--:
DeepSeek现在很不稳定,偶尔能答出来复杂问题,偶尔又不行
--【伍】--:
我试了下豆包专家,是可以的,思维链特别清晰,速度很快,感觉背题了…
deepseek我的循环上了,快速和专家都不行
--【陆】--:
不对,开了搜索,关了这个一样答不出来
image2058×626 97.6 KB
image1258×1129 124 KB
甚至有点搞笑
--【柒】--:
image1817×1591 310 KB
用楼主的提示词可以
--【捌】--:
我也是以为到红绿色盲这一步就结束了。结果还有下一步,。
--【玖】--:
image1226×238 24.9 KB
还得是哈基米
--【拾】--:
我感觉我真人第一反应也就是到红绿色盲结束,不会想这么多,难道说模型成神的第一步是离人越来越远
--【拾壹】--:
效果看着挺不错的,不过好像还是有点不符合现实物理??
--【拾贰】--:
我一直以为这题到推断出红绿色盲就结束了..
--【拾叁】--:
佬,我的deepseek现在29s就答出来了,是不是因为问的人多了就学会了。还是说因为算力不够/模型路由。
Screenshot_20260410_221150_com_deepseek_chat_MainActivity1272×2800 401 KB
--【拾肆】--:
难道说是给我灰度到seed 3.0了?超级豆包指日可待?
--【拾伍】--:
为什么我豆包专家不行啊?而且豆包的回答把我笑吐了
image1136×1081 55.1 KB
--【拾陆】--:
我看了一下豆包的思考,它其实意识到了红绿色盲,但是没有想到父亲被绿了
--【拾柒】--:
我换了提示词又测了下,这轮不可以了…
image1656×1493 456 KB
--【拾捌】--:
贴一个传统抽奖大转盘,之前测过很多模型,都是奖项和指针不对应,deepseek v4 这次成了
--【拾玖】--:
有时候答对有时答错的题,不是使用搜索功能,以前3.2就能答对,但不稳定
之前用其他模型生成魔方,静态完整,但是一旦动起来动画就乱了,这次用deepseek测试思考了66秒,做出来静态,动态看起来都还不错,感觉能前端编程替用了。各位佬把你们的各种抽象测试结果放在评论区。QQ上录制视频里面有录制动图。
`【任务】:创建一个单文件花开视觉模拟器。
【技术要求】:
- 零依赖:仅使用原生 HTML、CSS、JavaScript,禁止任何外部库(如 Three.js)。
- 单文件:所有代码都在一个 HTML 文件内。
- 渲染:使用 CSS 3D Transforms 实现花开效果。`
`
3x3 魔方模拟器 - 纯CSS 3D实现 * { user-select: none; -webkit-tap-highlight-color: transparent; } body {
margin: 0;
min-height: 100vh;
background: linear-gradient(145deg, #1a2a3a 0%, #0f1a24 100%);
display: flex;
justify-content: center;
align-items: center;
font-family: 'Segoe UI', 'Poppins', 'Roboto', system-ui, sans-serif;
overflow: hidden;
}
/* 主容器 */
.app {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100%;
height: 100vh;
position: relative;
}
/* 3D 舞台 */
.scene {
perspective: 1200px;
perspective-origin: 50% 50%;
width: 500px;
height: 500px;
display: flex;
justify-content: center;
align-items: center;
cursor: grab;
margin: 20px auto;
}
.scene:active {
cursor: grabbing;
}
/* 魔方整体容器 - 鼠标控制旋转 */
.rubiks-cube {
position: relative;
width: 150px;
height: 150px;
transform-style: preserve-3d;
transition: transform 0.05s linear;
will-change: transform;
}
/* 每个小块的公共样式 */
.cubie {
position: absolute;
width: 50px;
height: 50px;
transform-style: preserve-3d;
backface-visibility: visible;
transition: none;
}
/* 每个面通用样式 */
.face {
position: absolute;
width: 50px;
height: 50px;
border: 1px solid rgba(0,0,0,0.25);
box-sizing: border-box;
box-shadow: inset 0 0 2px rgba(0,0,0,0.1);
background-color: #222;
}
/* 光泽效果 */
.face::after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.25) 0%, rgba(0,0,0,0.05) 80%);
pointer-events: none;
}
/* 控制面板 */
.controls {
background: rgba(30, 40, 50, 0.85);
backdrop-filter: blur(10px);
border-radius: 48px;
padding: 12px 24px;
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 10px;
margin-top: 20px;
margin-bottom: 20px;
box-shadow: 0 10px 25px rgba(0,0,0,0.3);
border: 1px solid rgba(255,255,255,0.2);
max-width: 90vw;
}
button {
background: #2c3e44;
border: none;
color: white;
font-size: 1.2rem;
font-weight: bold;
width: 58px;
height: 58px;
border-radius: 40px;
cursor: pointer;
transition: all 0.2s ease;
box-shadow: 0 4px 8px rgba(0,0,0,0.3);
font-family: monospace;
letter-spacing: 1px;
backdrop-filter: blur(4px);
background: linear-gradient(145deg, #34495e, #2c3e50);
border-bottom: 2px solid #1abc9c;
}
button:active {
transform: scale(0.94);
box-shadow: 0 1px 3px rgba(0,0,0,0.4);
}
.action-btn {
background: linear-gradient(145deg, #e67e22, #d35400);
border-bottom-color: #f1c40f;
width: auto;
padding: 0 20px;
}
.reset-btn {
background: linear-gradient(145deg, #95a5a6, #7f8c8d);
border-bottom-color: #ecf0f1;
}
.shuffle-btn {
background: linear-gradient(145deg, #9b59b6, #8e44ad);
border-bottom-color: #f39c12;
}
.group-title {
color: #ecf0f1;
font-size: 0.7rem;
margin: 0 5px;
align-self: center;
font-weight: bold;
letter-spacing: 1px;
}
@media (max-width: 680px) {
button {
width: 48px;
height: 48px;
font-size: 1rem;
}
.controls {
gap: 8px;
padding: 12px 16px;
}
.scene {
width: 380px;
height: 380px;
}
.rubiks-cube {
width: 120px;
height: 120px;
}
.cubie, .face {
width: 40px;
height: 40px;
}
}
</style>
基本层
U
U'
R
R'
F
F'
L
L'
B
B'
D
D'
🎲 打乱
⟳ 重置
`
网友解答:
--【壹】--:
尝试了一下,完成度挺高的。没有出现奇怪的转动,可能是使用了 threejs.
--【贰】--:
(帖子已被作者删除)
--【叁】--:
之前的爸爸女儿题只会答一些莫名其妙的话,今天终于想出来了
image1200×4231 498 KB
--【肆】--:
DeepSeek现在很不稳定,偶尔能答出来复杂问题,偶尔又不行
--【伍】--:
我试了下豆包专家,是可以的,思维链特别清晰,速度很快,感觉背题了…
deepseek我的循环上了,快速和专家都不行
--【陆】--:
不对,开了搜索,关了这个一样答不出来
image2058×626 97.6 KB
image1258×1129 124 KB
甚至有点搞笑
--【柒】--:
image1817×1591 310 KB
用楼主的提示词可以
--【捌】--:
我也是以为到红绿色盲这一步就结束了。结果还有下一步,。
--【玖】--:
image1226×238 24.9 KB
还得是哈基米
--【拾】--:
我感觉我真人第一反应也就是到红绿色盲结束,不会想这么多,难道说模型成神的第一步是离人越来越远
--【拾壹】--:
效果看着挺不错的,不过好像还是有点不符合现实物理??
--【拾贰】--:
我一直以为这题到推断出红绿色盲就结束了..
--【拾叁】--:
佬,我的deepseek现在29s就答出来了,是不是因为问的人多了就学会了。还是说因为算力不够/模型路由。
Screenshot_20260410_221150_com_deepseek_chat_MainActivity1272×2800 401 KB
--【拾肆】--:
难道说是给我灰度到seed 3.0了?超级豆包指日可待?
--【拾伍】--:
为什么我豆包专家不行啊?而且豆包的回答把我笑吐了
image1136×1081 55.1 KB
--【拾陆】--:
我看了一下豆包的思考,它其实意识到了红绿色盲,但是没有想到父亲被绿了
--【拾柒】--:
我换了提示词又测了下,这轮不可以了…
image1656×1493 456 KB
--【拾捌】--:
贴一个传统抽奖大转盘,之前测过很多模型,都是奖项和指针不对应,deepseek v4 这次成了
--【拾玖】--:
有时候答对有时答错的题,不是使用搜索功能,以前3.2就能答对,但不稳定

