Can 3D text be tilted, rotated, and shrunk using only CSS to create a bottom view effect? I want my text to appear as if it is lying on a table. Is this achievable without animation, just with static effects? While I can achieve this in 3dsMAX or Photoshop, I am interested in the CSS implementation.
Current setup:
Desired outcome:
I have managed a partial effect by adding a large shadow to the text. However, I am looking for a more clear and explicit design. Simply increasing the size of the shadow does not enhance the desired effect. I need to tilt and vertically compress my text. Are there specific CSS styles that could help me achieve this?
Any suggestions would be greatly appreciated!
Current shadow styles:
text-shadow: 0px 0px 0 rgb(221,120,128),
-1px 1px 0 rgb(215,114,122),
-2px 2px 0 rgb(209,108,116),
-3px 3px 0 rgb(203,102,110),
-4px 4px 0 rgb(197,96,104),
-5px 5px 0 rgb(191,90,98),
-6px 6px 0 rgb(185,84,92),
-7px 7px 0 rgb(178,77,85),
-8px 8px 0 rgb(172,71,79),
-9px 9px 0 rgb(166,65,73),
-10px 10px 0 rgb(160,59,67),
-11px 11px 0 rgb(154,53,61),
-12px 12px 0 rgb(148,47,55),
-13px 13px 0 rgb(142,41,49),
-14px 14px 0 rgb(136,35,43),
-15px 15px 0 rgb(130,29,37),
-16px 16px 15px rgba(0,0,0,0.6),
-16px 16px 1px rgba(0,0,0,0.5),
0px 0px 15px rgba(0,0,0,.2);
}