Categories:
Cloud (204)
Entertainment (11)
Facebook (43)
General (50)
Life (31)
Programming (64)
Technology (430)
Testing (4)
Tools (488)
Twitter (5)
Wearable (26)
Web Design (44)
Collections:
Other Resources:
Transform Group of Objects Using "g"
How to transform a group of objects using the "g" element?
✍: FYIcenter.com
The "g" element is a container that allows you to group
multiple graphical objects together as a single object.
This allows you to transform the group as a whole,
instead individual objects.
Here is an HTML document, transformation-group.html, that has a SVG image with transformation on a group of graphical objects:
<html><body>
<svg xmlns="http://www.w3.org/2000/svg"
style="background-color: #dddddd"
width="350" height="200" viewBox="-50 -50 350 100">
<line x1="-50" y1="0" x2="50" y2="0" stroke="black" stroke-dasharray="4"/>
<line x1="0" y1="-50" x2="0" y2="50" stroke="black" stroke-dasharray="4"/>
<g transform="rotate(-10)">
<text x="0" y="0" font-family="Arial" font-size="36" fill="grey"
transform="skewX(-75) scale(1,0.2)">FYIcenter.com</text>
<text x="0" y="0" font-family="Arial" font-size="36">FYIcenter.com</text>
</g>
</svg>
</body></html>
When you open the above HTML file, transformation-group.html, in a Web browser, you see 2 text strings rotated by -10 degree:
⇒ List of Transformation Functions
⇐ "transform" Attribute for Transformations
2023-08-03, 993🔥, 0💬
Popular Posts:
What are URL:sfb and URL:lync15 Protocols? URL:sfb and URL:lync15 protocols are special network prot...
What port numbers are used for data connections in passive mode in FileZilla Server? Can I limit the...
How to Install and Start Skype Meeting App in Google Chrome? You can follow this tutorial to install...
How to run Fitbit Connect for the first time and create a new account on Fitbit server? I have Fitbi...
How to add a hyperlink to connect a keyword to another slide in PowerPoint? I want to have clickable...