@gudhub/image-component
v1.0.1
Published
## Basic example
Downloads
1
Readme
Image web component
Basic example
<image-component lazyload src="/assets/images/example.jpg" alt="Alternate" title="Title for image"></image-component>
External download example
<image-component data-src="https://gudhub.com/userdata/29883/968970.jpg" data-url="/assets/blog/developer-life-in-ukraine.jpg" alt="Alternate" title="Title for image"></image-component>
Possible attributes
- src - path to your image from root of the website. Use only for simple image, not for external.
- data-src - url from which image should be downloaded. Use only for external images.
- data-url - url in which downloaded image should be saved. Use only for external images.
- lazyload - if exists, will add loading="lazy" attribute for generated tag.
- alt - just add alt text for generated tag.
- title - just add title text for generated tag.
- width - just add width attribute for generated tag. Can be useful for Google Page Speed optimization.
- height - just add height attribute for generated tag. Can be useful for Google Page Speed optimization.