Currently exploring various methods in CSS3, jQuery, SVG, or canvas to achieve a specific effect, but encountering some challenges along the way.
Key considerations to take note of:
- The text gradient is vertical with opacity
- The text could span multiple lines based on user input
- An outlined text effect is required (considering text shadow for implementation, without IE support)
- A background image will be positioned behind the text
Although -webkit-linear-gradient
offers a simple solution, aiming for cross-browser compatibility beyond Webkit is essential for a developer.
Referencing a demo from Chris Coyier showcasing this effect with added background image.
Exploring JavaScript and the jQuery library for alternatives due to lack of cross-browser support. One plugin, PXGradient by MRNIX, offers a unique approach by transitioning HEX values to create a gradient effect.
While various plugins offer similar transitions, none seem to support rgba or opacity. Stackoverflow discusses related queries and suggests Cufon, although limited in supporting text shadows.
Additionally, SVG solutions have been explored, such as the example found here. However, dynamic width and height constraints pose challenges for user-inputted text.
Considering dynamic SVG implementation based on text dimensions, seeking assistance due to limited SVG proficiency.
Exploring various options across CSS, jQuery, SVG, and canvas for a suitable solution, yet encountering roadblocks.
Any insights or solutions on achieving this effect would be greatly appreciated.
Cheers!