{"id":4137,"date":"2024-11-10T14:09:50","date_gmt":"2024-11-10T06:09:50","guid":{"rendered":"https:\/\/fwq.ai\/blog\/4137\/"},"modified":"2024-11-10T14:09:50","modified_gmt":"2024-11-10T06:09:50","slug":"%e5%a6%82%e4%bd%95%e4%bd%bf%e7%94%a8-css-%e5%ae%9e%e7%8e%b0%e4%bb%8e%e4%b8%8a%e5%88%b0%e4%b8%8b%e6%b8%90%e5%8f%98%e6%b5%85%e8%89%b2%ef%bc%8c%e4%bb%8e%e5%b7%a6%e5%88%b0%e5%8f%b3%e6%b8%90%e5%8f%98","status":"publish","type":"post","link":"https:\/\/fwq.ai\/blog\/4137\/","title":{"rendered":"\u5982\u4f55\u4f7f\u7528 CSS \u5b9e\u73b0\u4ece\u4e0a\u5230\u4e0b\u6e10\u53d8\u6d45\u8272\uff0c\u4ece\u5de6\u5230\u53f3\u6e10\u53d8\u5f69\u8272\u7684\u80cc\u666f\u6548\u679c\uff1f"},"content":{"rendered":"<p><img decoding=\"async\" src=\"https:\/\/img.php.cn\/upload\/article\/001\/246\/273\/173123083362048.jpg\" class=\"aligncenter\" title=\"\u5982\u4f55\u4f7f\u7528 CSS \u5b9e\u73b0\u4ece\u4e0a\u5230\u4e0b\u6e10\u53d8\u6d45\u8272\uff0c\u4ece\u5de6\u5230\u53f3\u6e10\u53d8\u5f69\u8272\u7684\u80cc\u666f\u6548\u679c\uff1f\u63d2\u56fe\" alt=\"\u5982\u4f55\u4f7f\u7528 CSS \u5b9e\u73b0\u4ece\u4e0a\u5230\u4e0b\u6e10\u53d8\u6d45\u8272\uff0c\u4ece\u5de6\u5230\u53f3\u6e10\u53d8\u5f69\u8272\u7684\u80cc\u666f\u6548\u679c\uff1f\u63d2\u56fe\" \/><\/p>\n<p><strong>\u4ece\u4e0a\u81f3\u4e0b\u6e10\u53d8\u6d45\u8272\uff0c\u5b9e\u73b0\u6e10\u5c42\u4ea4\u7ec7\u6548\u679c<\/strong><\/p>\n<p>\u5728 CSS \u6837\u5f0f\u4e2d\uff0c\u5b9e\u73b0\u4ece\u4e0a\u5230\u4e0b\u9010\u6e10\u53d8\u6d45\u7684\u6e10\u53d8\u8272\uff0c\u53ef\u4ee5\u8fd0\u7528 mask-image \u5c5e\u6027\u3002<\/p>\n<p><strong>\u5b9e\u73b0\u6b65\u9aa4\uff1a<\/strong><\/p>\n<p>\u5728 <\/p>\n<p> \u6807\u7b7e\u5185\u52a0\u5165\u4ee5\u4e0b\u4ee3\u7801\uff0c\u521b\u5efa\u4e00\u4e2a\u4ece\u4e0a\u5230\u4e0b\u7684\u9ed1\u8272\u5230\u900f\u660e\u7684\u6e10\u53d8\u906e\u7f69\uff1a <\/p>\n<pre>html, body {\n    width: 100%;\n    height: 100%;\n}\n\nhtml {\n    background-color: #ffffff;\n}\n\nbody {\n    -webkit-mask-image: linear-gradient(to bottom, #000000, transparent);\n}<\/pre>\n<p> \u767b\u5f55\u540e\u590d\u5236 <\/p>\n<p>\u968f\u540e\uff0c\u5728 <\/p>\n<p> \u6807\u7b7e\u5185\u6dfb\u52a0\u4ee5\u4e0b\u4ee3\u7801\uff0c\u521b\u5efa\u4ece\u5de6\u5230\u53f3\u7684\u5f69\u8272\u6e10\u53d8\u80cc\u666f\uff1a <\/p>\n<p><span>\u7acb\u5373\u5b66\u4e60<\/span>\u201c\u201d\uff1b<\/p>\n<pre>background-image: linear-gradient(to right, rgb(39, 121, 245), rgb(81, 221, 240), rgb(118, 216, 118));\nbackground-repeat: no-repeat;<\/pre>\n<p> \u767b\u5f55\u540e\u590d\u5236 <\/p>\n<p><strong>\u6548\u679c\u6f14\u793a\uff1a<\/strong><\/p>\n<p>\u5b8c\u6210\u4ee5\u4e0a\u64cd\u4f5c\u540e\uff0c\u5373\u53ef\u83b7\u5f97\u4e00\u4e2a\u4ece\u4e0a\u5230\u4e0b\u6e10\u53d8\u6d45\u8272\uff0c\u4ece\u5de6\u5230\u53f3\u6e10\u53d8\u5f69\u8272\u7684\u80cc\u666f\u6548\u679c\u3002<\/p>\n<pre>&lt;!DOCTYPE html&gt;\n&lt;html&gt;\n&lt;head&gt;\n    &lt;style&gt;\n        html, body {\n            width: 100%;\n            height: 100%;\n        }\n\n        html {\n            background-color: #ffffff;\n        }\n\n        body {\n            -webkit-mask-image: linear-gradient(to bottom, #000000, transparent);\n            background-image: linear-gradient(to right, rgb(39, 121, 245), rgb(81, 221, 240), rgb(118, 216, 118));\n            background-repeat: no-repeat;\n        }\n    &lt;\/style&gt;\n&lt;\/head&gt;\n&lt;body&gt;\n&lt;\/body&gt;\n&lt;\/html&gt;<\/pre>\n<p> \u767b\u5f55\u540e\u590d\u5236 <\/p>\n<p>\u4ee5\u4e0a\u5c31\u662f\u5982\u4f55\u4f7f\u7528 CSS \u5b9e\u73b0\u4ece\u4e0a\u5230\u4e0b\u6e10\u53d8\u6d45\u8272\uff0c\u4ece\u5de6\u5230\u53f3\u6e10\u53d8\u5f69\u8272\u7684\u80cc\u666f\u6548\u679c\uff1f\u7684\u8be6\u7ec6\u5185\u5bb9\uff0c\u66f4\u591a\u8bf7\u5173\u6ce8\u7c73\u4e91\u5176\u5b83\u76f8\u5173\u6587\u7ae0\uff01<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u4ece\u4e0a\u81f3\u4e0b\u6e10\u53d8\u6d45\u8272\uff0c\u5b9e\u73b0\u6e10\u5c42\u4ea4\u7ec7\u6548\u679c \u5728 CSS \u6837\u5f0f\u4e2d\uff0c\u5b9e\u73b0\u4ece\u4e0a\u5230\u4e0b\u9010\u6e10\u53d8\u6d45\u7684\u6e10\u53d8\u8272\uff0c\u53ef\u4ee5\u8fd0\u7528 mask-image \u5c5e\u6027\u3002 \u5b9e\u73b0\u6b65\u9aa4\uff1a \u5728 \u6807\u7b7e\u5185\u52a0\u5165\u4ee5\u4e0b\u4ee3\u7801\uff0c\u521b\u5efa\u4e00\u4e2a\u4ece\u4e0a\u5230\u4e0b\u7684\u9ed1\u8272\u5230\u900f\u660e\u7684\u6e10\u53d8\u906e\u7f69\uff1a html, body { width: 100%; height: 100%; } html { background-color: #ffffff; } body { -webkit-mask-image: linear-gradient(to bottom, #000000, transparent); } \u767b\u5f55\u540e\u590d\u5236 \u968f\u540e\uff0c\u5728 \u6807\u7b7e\u5185\u6dfb\u52a0\u4ee5\u4e0b\u4ee3\u7801\uff0c\u521b\u5efa\u4ece\u5de6\u5230\u53f3\u7684\u5f69\u8272\u6e10\u53d8\u80cc\u666f\uff1a \u7acb\u5373\u5b66\u4e60\u201c\u201d\uff1b background-image: linear-gradient(to right, rgb(39, 121, 245), rgb(81, 221, 240), rgb(118, 216, 118)); background-repeat: no-repeat; \u767b\u5f55\u540e\u590d\u5236 \u6548\u679c\u6f14\u793a\uff1a \u5b8c\u6210\u4ee5\u4e0a\u64cd\u4f5c\u540e\uff0c\u5373\u53ef\u83b7\u5f97\u4e00\u4e2a\u4ece\u4e0a\u5230\u4e0b\u6e10\u53d8\u6d45\u8272\uff0c\u4ece\u5de6\u5230\u53f3\u6e10\u53d8\u5f69\u8272\u7684\u80cc\u666f\u6548\u679c\u3002 &lt;!DOCTYPE html&gt; &lt;html&gt; &lt;head&gt; [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[16],"tags":[],"class_list":["post-4137","post","type-post","status-publish","format-standard","hentry","category-16"],"_links":{"self":[{"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/posts\/4137","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/comments?post=4137"}],"version-history":[{"count":0,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/posts\/4137\/revisions"}],"wp:attachment":[{"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/media?parent=4137"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/categories?post=4137"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/tags?post=4137"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}