All Projects → Typogram → Anicons

Typogram / Anicons

Anicons: a new kind of icon fonts with baked-in animation and colors

Projects that are alternatives of or similar to Anicons

GoogleMD-Icons
Google Material Design Icons Library
Stars: ✭ 14 (-76.27%)
Mutual labels:  icons, materialdesign
Gbz overlay
Gameboy Zero status icon overlay display
Stars: ✭ 46 (-22.03%)
Mutual labels:  materialdesign, icons
React Native Alternate Icons
React Native Alternate Icons for iOS 10.3+
Stars: ✭ 42 (-28.81%)
Mutual labels:  icons
Iconology
I got tired of manually exporting every icon size (for Xcode and more), so I made an app to do it.
Stars: ✭ 56 (-5.08%)
Mutual labels:  icons
Eva Icons
A pack of more than 480 beautifully crafted Open Source icons. SVG, Sketch, Web Font and Animations support.
Stars: ✭ 8,114 (+13652.54%)
Mutual labels:  icons
Android Dev
⚡️ Curated list of resources for Android app development. Prepare for battle!
Stars: ✭ 44 (-25.42%)
Mutual labels:  icons
Evolvere Icons
Stars: ✭ 52 (-11.86%)
Mutual labels:  icons
Masalla Icon Theme
Masalla Icon Theme for UNIX-Like OS
Stars: ✭ 34 (-42.37%)
Mutual labels:  icons
Swifticonfont
Icons fonts for iOS (Font Awesome 5, Iconic, Ionicon, Octicon, Themify, MapIcon, MaterialIcon, Foundation 3, Elegant Icon, Captain Icon)
Stars: ✭ 1,094 (+1754.24%)
Mutual labels:  icons
Angular Fontawesome
Official Angular component for Font Awesome 5
Stars: ✭ 1,056 (+1689.83%)
Mutual labels:  icons
Django Icons
Icons for Django
Stars: ✭ 55 (-6.78%)
Mutual labels:  icons
Org Link Beautify
Beautify org links with colors and icons.
Stars: ✭ 50 (-15.25%)
Mutual labels:  icons
Antu Icons
A smooth theme designed for Plasma Desktop
Stars: ✭ 53 (-10.17%)
Mutual labels:  icons
Vscode Icons
Custom Visual Studio Code Icons
Stars: ✭ 1,021 (+1630.51%)
Mutual labels:  icons
Youtube Play Icon
Material style morphing play-pause drawable for Android
Stars: ✭ 57 (-3.39%)
Mutual labels:  icons
Blade Zondicons
A package to easily make use of Zondicons in your Laravel Blade views.
Stars: ✭ 40 (-32.2%)
Mutual labels:  icons
React Icomoon
It allows you to simply view the icons in the selection.json file provided by Icomoon.
Stars: ✭ 48 (-18.64%)
Mutual labels:  icons
Faboptions
A multi-functional FAB component with customizable options
Stars: ✭ 1,060 (+1696.61%)
Mutual labels:  materialdesign
Cryptoawesome
The most complete cryptocurrency image library to be used in your project.
Stars: ✭ 58 (-1.69%)
Mutual labels:  icons
Atom
Atom file-specific icons for improved visual grepping.
Stars: ✭ 1,093 (+1752.54%)
Mutual labels:  icons

Anicons

Anicons is the first animated color variable icon font. It is made with two types of technologies: Variable Fonts and Color Fonts. We want to experiment with creating an icon font that combines these two cutting edge font technologies.

Icons

  • menu
  • play
  • favorite
  • thumb_up
  • check
  • notifications
  • edit
  • lock
  • phone
  • search
  • location

Use Anicons in your design projects

You can easily incorporate Anicons into your design projects by installing it onto your machine. When you download the Anicons project files, it comes with static versions of the icon font with two weights: Start and End. The static versions help you plan how you will Anicons in your project.


AniconStatStart
Start shows the icon at the starting stage of the animation

AniconStatEnd
End shows the icon at the ending stage of the animation

Use Anicons on the Web

1. Embed Font

To embed Anicons fonts into a webpage, copy this code into the

of your HTML document.

Use the following HTML to embed Anicons Regular:

<link href="https://fonts.googleapis.com/css?family=Anicons+Regular&display=swap" rel="stylesheet">

Use the following HTML to embed Anicons Color:

<link href="https://fonts.googleapis.com/css?family=Anicons+Color&display=swap" rel="stylesheet">

Use the following HTML to embed Anicons Regular and Anicons Color:

<link href="https://fonts.googleapis.com/css?family=Anicons+Regular|Anicons+Color&display=swap" rel="stylesheet">
2. Specify Icon Character in HTML

Use the following HTML to specify the icon character:

<!-- replace “A” with appropriate character.--> 
<div class=”icon”>A</div>
3. Specify Font Family in CSS

Use the following CSS rules to specify the families:

font-family: "Anicons Regular", sans-serif;
font-family: "Anicons Color", sans-serif;
4. Animate

Use the following CSS rules to animate the icon. font-variation-settings provides control over the variable font characteristics, (in our case, time) of our icon font.

.icon {
	font-variation-settings: "TIME" 1;
	transition: font-variation-settings 0.4s ease;
}
.icon:hover {
	font-variation-settings: "TIME" 100;
}

or use @keyframes animation:

@keyframes icon-animation {
	0% { font-variation-settings: "TIME" 1; }
	100% { font-variation-settings: "TIME" 100; }
}
.icon {
	animation: icon-animation .5s ease-in-out infinite;
}

Reference

https://www.harbortype.com/blog/rocher-color-making-a-variable-color-font/
https://glyphsapp.com/tutorials/creating-a-variable-font

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].