内容简介:A set of over 300 free MIT-licensed high-quality SVG icons for you to use in your web projects. Each icon is designed on a 24x24 grid and aAll icons are built with SVG, so you can place them as
Tabler Icons
A set of over 300 free MIT-licensed high-quality SVG icons for you to use in your web projects. Each icon is designed on a 24x24 grid and a 2px
stroke.
npm install tabler-icons --save
Preview
Usage
All icons are built with SVG, so you can place them as <img>
, background-image
and inline in HTML code.
HTML image
If you load an icon as an image, you can modify its size using CSS.
<img src="path/to/icon.svg" alt="icon title"/>
Inline HTML
You can paste the content of the icon file into your HTML code to display it on the page.
<a href=""> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" stroke-width="1.25" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"> ... </svg> Click me </a>
Thanks to that, you can change the size, color and the stroke-width
of the icons with CSS code.
.icon-tabler { color: red; width: 32px; height: 32px; stroke-width: 1.25; }
SVG sprite
Add an icon to be displayed on your page with the following markup ( activity
in the above example can be replaced with any valid icon name):
<svg width="24" height="24"> <use xlink:href="path/to/tabler-sprite.svg#tabler-activity"/> </svg>
Multiple strokes
All icons in this repository have been created with the value of the stroke-width
property, so if you change the value, you can get different icon variants that will fit in well with your design.
License
Tabler Icons is licensed under the MIT License .
以上所述就是小编给大家介绍的《1 Over 300 free MIT-licensed high-quality SVG icons – Tabler Icons》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
渐进增强的Web设计
[美] Todd Parker、[英] Patty Toland、[英] Scott Jehl、[法] Maggie Costello Wachs / 牛化成 / 人民邮电出版社 / 2014-1 / 69.00
本书由全球著名Web设计公司Filament集团两位创始人和两位开发主力联手打造,其中Scott Jehl还是jQuery团队成员。四位作者具有多年的网站设计和开发经验,曾为网站、无线设备、Web应用设计过众多高度实用的用户界面,受到了高度赞扬。本书展示了如何利用渐进增强方法开发网站,从而获得最佳用户体验。本书既是理解渐进增强原则和益处的实用指南,也用详细的案例分析,目的是向设计师以及开发人员传授......一起来看看 《渐进增强的Web设计》 这本书的介绍吧!