{"id":1391,"date":"2025-06-17T10:48:30","date_gmt":"2025-06-17T02:48:30","guid":{"rendered":"https:\/\/womeifei.cn\/?p=1391"},"modified":"2025-06-17T11:02:00","modified_gmt":"2025-06-17T03:02:00","slug":"css-3d-hover-press-effect","status":"publish","type":"post","link":"https:\/\/womeifei.cn\/index.php\/2025\/06\/17\/css-3d-hover-press-effect\/","title":{"rendered":"CSS&#8212;3D Hover Press Effect"},"content":{"rendered":"\n<figure class=\"wp-block-video\"><video height=\"882\" style=\"aspect-ratio: 1132 \/ 882;\" width=\"1132\" controls src=\"https:\/\/womeifei.cn\/wp-content\/uploads\/2025\/06\/3DHoverPressEffect.mp4\"><\/video><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">\u89c9\u5f97\u8fd9\u6837\u7684\u6548\u679c\u786e\u5b9e\u633a\u4e0d\u9519\u7684 \u5f88\u597d\u73a9 \u6765\u770b\u770b\u600e\u4e48\u5b9e\u73b0\u5427<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">\u4e3b\u8981\u7528\u5230\u7684\u662fCSS3D\u7684\u77e5\u8bc6  \u5229\u7528\u4e4b\u524d\u63d0\u8fc7\u7684<strong>perspective\u5c5e\u6027 \u548crotateX,Y,Z<\/strong>\u8fdb\u884c\u64cd\u4f5c <\/p>\n\n\n\n<p class=\"wp-block-paragraph\">CSS\u4ee3\u7801\u5982\u4e0b<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>body {\n    display: flex;\n    justify-content: center;\n    align-items: center;\n    height: 100vh;\n    background: #f5f5f5;\n}\n\n.container {\n    perspective: 1000px;\n    width: 300px;\n    height: 300px;\n}\n\n.box {\n    --rotateX: 0deg;\n    --rotateY: 0deg;\n    --pressDepth: 0px;\n    width: 100%;\n    height: 100%;\n    background: #2196F3;\n    border-radius: 12px;\n    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);\n    transition: transform 0.15s ease-out;\n    transform:\n        perspective(1000px) rotateX(var(--rotateX)) rotateY(var(--rotateY)) translateZ(var(--pressDepth));\n    transform-style: preserve-3d;\n    cursor: pointer;\n}<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">HTML\u548cJS\u4ee3\u7801\u5982\u4e0b<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;body&gt;\n    &lt;div class=\"container\"&gt;\n        &lt;div\n            class=\"box\"\n            id=\"hover-box\"\n        &gt;&lt;\/div&gt;\n    &lt;\/div&gt;\n\n    &lt;script&gt;\n        const box = document.getElementById('hover-box');\n\n        box.addEventListener('mousemove', (e) =&gt; {\n            const rect = box.getBoundingClientRect();\n\n            \/\/ \u8ba1\u7b97\u9f20\u6807\u5728\u76d2\u5b50\u4e0a\u7684\u76f8\u5bf9\u4f4d\u7f6e\uff08-0.5 ~ 0.5\uff09\n            const x = (e.clientX - rect.left) \/ rect.width - 0.5;\n            const y = (e.clientY - rect.top) \/ rect.height - 0.5;\n\n            \/\/ \u8ba1\u7b97\u65cb\u8f6c\u89d2\u5ea6\uff08\u9650\u5236\u6700\u5927\u503c\uff09\n            const maxRotate = 15; \/\/ \u6700\u5927\u65cb\u8f6c\u89d2\u5ea6\n            const rotateX = -y * maxRotate; \/\/ \u4e0a\u4e0b\u503e\u659c\n            const rotateY = x * maxRotate;  \/\/ \u5de6\u53f3\u503e\u659c\n\n            \/\/ \u8ba1\u7b97\u6309\u538b\u6df1\u5ea6\uff08\u9f20\u6807\u8d8a\u9760\u8fd1\u4e2d\u5fc3\uff0c\u51f9\u9677\u8d8a\u6df1\uff09\n            const pressDepth = -10 * (1 - Math.abs(x) * Math.abs(y));\n\n            \/\/ \u66f4\u65b0CSS\u53d8\u91cf\n            box.style.setProperty('--rotateX', `${rotateX}deg`);\n            box.style.setProperty('--rotateY', `${rotateY}deg`);\n            box.style.setProperty('--pressDepth', `${pressDepth}px`);\n        });\n\n        \/\/ \u9f20\u6807\u79bb\u5f00\u65f6\u6062\u590d\u539f\u72b6\n        box.addEventListener('mouseleave', () =&gt; {\n            box.style.setProperty('--rotateX', '0deg');\n            box.style.setProperty('--rotateY', '0deg');\n            box.style.setProperty('--pressDepth', '0px');\n        });\n    &lt;\/script&gt;\n&lt;\/body&gt;\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">\u548c\u6211\u4eec\u4e4b\u524d\u5b9e\u73b0\u7684\u9f20\u6807\u79fb\u52a8\u8fb9\u6846\u53d8\u4eae\u7ed3\u5408 \u5c31\u53ef\u4ee5\u5b9e\u73b0\u975e\u5e38\u4f18\u96c5\u7684\u6548\u679c<\/p>\n\n\n\n<figure class=\"wp-block-video\"><video height=\"954\" style=\"aspect-ratio: 1648 \/ 954;\" width=\"1648\" controls src=\"https:\/\/womeifei.cn\/wp-content\/uploads\/2025\/06\/QQ2025617-11011.mp4\"><\/video><\/figure>\n","protected":false},"excerpt":{"rendered":"<p>\u89c9\u5f97\u8fd9\u6837\u7684\u6548\u679c\u786e\u5b9e\u633a\u4e0d\u9519\u7684 \u5f88\u597d\u73a9 \u6765\u770b\u770b\u600e\u4e48\u5b9e\u73b0\u5427 \u4e3b\u8981\u7528\u5230\u7684\u662fCSS3D\u7684\u77e5\u8bc6 \u5229\u7528\u4e4b\u524d\u63d0\u8fc7\u7684perspe [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[12,1],"tags":[],"class_list":["post-1391","post","type-post","status-publish","format-standard","hentry","category-html5css3-","category-1"],"_links":{"self":[{"href":"https:\/\/womeifei.cn\/index.php\/wp-json\/wp\/v2\/posts\/1391","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/womeifei.cn\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/womeifei.cn\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/womeifei.cn\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/womeifei.cn\/index.php\/wp-json\/wp\/v2\/comments?post=1391"}],"version-history":[{"count":2,"href":"https:\/\/womeifei.cn\/index.php\/wp-json\/wp\/v2\/posts\/1391\/revisions"}],"predecessor-version":[{"id":1396,"href":"https:\/\/womeifei.cn\/index.php\/wp-json\/wp\/v2\/posts\/1391\/revisions\/1396"}],"wp:attachment":[{"href":"https:\/\/womeifei.cn\/index.php\/wp-json\/wp\/v2\/media?parent=1391"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/womeifei.cn\/index.php\/wp-json\/wp\/v2\/categories?post=1391"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/womeifei.cn\/index.php\/wp-json\/wp\/v2\/tags?post=1391"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}