Programming Tips πŸ’‘
54.5K subscribers
65 photos
8 videos
30 files
338 links
Programming:
Tips πŸ’‘
Articles πŸ“•
Resources πŸ‘Ύ
Design Patterns πŸ’Ž
Software Principles βœ…

πŸ‡³πŸ‡± Contact & Ads: @MoienTajik
Download Telegram
Turn Things Off In HTML πŸ“΄

When making responsive sites, you don’t really want users to be able to double tap and zoom, as all your content should be visible. πŸ–₯

To do this you will need to add some code that disables user zooming and scaling.

<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />


This code will also enable iOS device to display sites more elegantly when the iPad or iPhone is rotated. πŸ“±

βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–

#html #responsive
@ProgrammingTip
Animate Calligraphy with SVG in CSS πŸ¦‹

From time to time at Stackoverflow, the question pops up whether there is an equivalent to the stroke-dashoffset technique for animating the SVG stroke that works for the fill attribute. πŸ€”

But upon closer inspection, what the questions are really trying to ask is something like this :

How do you animate calligraphy ⁉️

This article answers this question. ✨


https://t.me/pgimg/143

[ Article ] : https://kutt.it/g0QuEh

γ€°γ€°γ€°γ€°γ€°γ€°
#HTML #CSS #FrontEnd
@ProgrammingTip