diff --git a/src/app/[locale]/blogs/Add-Text-Shadow/1024_576.png b/src/app/[locale]/blogs/Add-Text-Shadow/1024_576.png new file mode 100644 index 0000000..69eb2b2 Binary files /dev/null and b/src/app/[locale]/blogs/Add-Text-Shadow/1024_576.png differ diff --git a/src/app/[locale]/blogs/Add-Text-Shadow/512_288.png b/src/app/[locale]/blogs/Add-Text-Shadow/512_288.png new file mode 100644 index 0000000..6732cab Binary files /dev/null and b/src/app/[locale]/blogs/Add-Text-Shadow/512_288.png differ diff --git a/src/app/[locale]/blogs/Add-Text-Shadow/blog-prompt.txt b/src/app/[locale]/blogs/Add-Text-Shadow/blog-prompt.txt new file mode 100644 index 0000000..d85f816 --- /dev/null +++ b/src/app/[locale]/blogs/Add-Text-Shadow/blog-prompt.txt @@ -0,0 +1,9 @@ +我要写一篇博文,介绍如何设置文字阴影。你是一个专业的SEO优化师,从seo的角度来帮我组织这个blog。 +1 打开 https://fast3dtext.com/editor +2 输入想要的Text +3 调整背景、字体、颜色 +4 打开Effect - Shadow的开关,选择自己喜欢的阴影颜色 +5 操控三维视角 +6 下载 + +至此,即完成了文字阴影 \ No newline at end of file diff --git a/src/app/[locale]/blogs/Add-Text-Shadow/data.ts b/src/app/[locale]/blogs/Add-Text-Shadow/data.ts new file mode 100644 index 0000000..63bd6ae --- /dev/null +++ b/src/app/[locale]/blogs/Add-Text-Shadow/data.ts @@ -0,0 +1,18 @@ +import Cover2 from "./512_288.png"; +import { BlogItem } from "../list"; + +export const Blog: BlogItem = { + id: "Add-Text-Shadow", + date: "2025-08-19", + cover: Cover2, + en: { + title: "How to Add Stunning Text Shadow Effects to 3D Text Online", + summary: + "Learn how to create eye-catching text shadow effects for your 3D text designs using Fast3DText. This step-by-step guide shows you how to enable shadows, choose shadow colors, and create professional-looking 3D text with depth and dimension. Perfect for designers and content creators.", + }, + zh: { + title: "如何为3D文字添加惊艳的阴影效果(在线工具)", + summary: + "本文教你使用 Fast3DText 为3D文字添加专业的阴影效果。通过开启阴影开关、选择阴影颜色和调整三维视角,你可以轻松创建具有深度感和立体感的3D文字设计。适合设计师和内容创作者使用。", + }, +}; diff --git a/src/app/[locale]/blogs/Add-Text-Shadow/en.tsx b/src/app/[locale]/blogs/Add-Text-Shadow/en.tsx new file mode 100644 index 0000000..5c31a69 --- /dev/null +++ b/src/app/[locale]/blogs/Add-Text-Shadow/en.tsx @@ -0,0 +1,89 @@ +import { Box, Heading, Text, Link, Flex } from '@radix-ui/themes'; +import Image from 'next/image'; +import img from "./1024_576.png"; + +export default function Page() { + return ( + + How to Add Stunning Text Shadow Effects to 3D Text Online + + + 3D Text with Shadow Effect Example + + + + Want to make your 3D text designs stand out with professional shadow effects? This comprehensive guide shows you how to easily add text shadow effects to your 3D text using Fast3DText.com - the best free online 3D text generator with shadow capabilities. + + + 🎯 Why Add Text Shadow Effects? + + Text shadows add depth, dimension, and professionalism to your 3D designs. They create visual hierarchy, improve readability, and make your text pop against any background. Perfect for social media graphics, presentations, logos, and marketing materials. + + + 🚀 Step-by-Step Guide to Adding Text Shadows + + 1. Open the 3D Text Editor + + Start by visiting 👉 https://fast3dtext.com/editor + + + 2. Enter Your Text Content + + Type the text you want to transform into 3D with shadow effects. You can enter single words, phrases, or multiple words separated by spaces for individual control. + + + 3. Customize Basic Settings + + Set up your foundation: + + + + 4. Enable Shadow Effects + + This is the key step! Navigate to the Effect panel and toggle on the Shadow switch. This activates the shadow functionality for your 3D text. + + + 5. Choose Your Shadow Color + + Select the perfect shadow color that complements your text. You can choose: + + + + 6. Adjust 3D Perspective + + Drag and rotate the 3D scene to find the perfect angle that showcases your shadow effect. The shadow will dynamically adjust based on your 3D viewpoint. + + + 7. Download Your Creation + + Click the Download button to save your 3D text with shadow effects as a high-quality PNG image. Ready to use in your projects! + + + 💡 Pro Tips for Best Results + + + 🎨 Creative Applications + + Text shadow effects are perfect for: logo design, social media graphics, YouTube thumbnails, presentation slides, website headers, marketing materials, and personal projects. + + + + Start creating stunning 3D text with professional shadow effects today at Fast3DText.com! + + + ); +} \ No newline at end of file diff --git a/src/app/[locale]/blogs/Add-Text-Shadow/page.tsx b/src/app/[locale]/blogs/Add-Text-Shadow/page.tsx new file mode 100644 index 0000000..536a6a1 --- /dev/null +++ b/src/app/[locale]/blogs/Add-Text-Shadow/page.tsx @@ -0,0 +1,82 @@ +import Footer from "@/components/Footer"; +import Header from "@/components/Header"; +import { Box, Flex, } from "@radix-ui/themes"; +import { useLocale } from "next-intl"; +import En from "./en"; +import Zh from "./zh"; +import { Locales } from "@/i18n/config"; +import { Metadata } from "next"; +import { Blog } from "./data"; + +export default function Page() { + + const locale = useLocale() as "en" | "zh"; + + return ( + +
+ + + + {locale == "en" && ()} + {locale == "zh" && ()} + + + +