Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Titanic | 2,425 | 1 | 6 years ago | 3 | March 22, 2017 | 10 | JavaScript | |||
A set of animated icons + code to insert them into the webpages | ||||||||||
Animocons | 1,448 | 7 years ago | 3 | JavaScript | ||||||
Animated icons powered by the motion graphics library mo.js by Oleg Solomka. Inspiration comes from the Dribbble shot ["Like Animation"](https://dribbble.com/shots/2527200-Like-Animation) by Daryl Ginn. | ||||||||||
Material Animated Switch | 1,136 | 4 years ago | 25 | Java | ||||||
A material Switch with icon animations and color transitions | ||||||||||
Smileyrating | 1,003 | 3 years ago | 1 | June 18, 2019 | 7 | apache-2.0 | Java | |||
SmileyRating is a simple rating bar for android. It displays animated smileys as rating icon. | ||||||||||
Bottom_navy_bar | 932 | 26 | 2 | 8 days ago | 20 | March 28, 2021 | 31 | apache-2.0 | Dart | |
A beautiful and animated bottom navigation | ||||||||||
React Useanimations | 868 | 9 | 6 | 7 months ago | 55 | December 22, 2021 | 20 | other | TypeScript | |
React-useanimations is a collection of free animated open source icons for React.js. | ||||||||||
Androidiconanimator | 817 | 3 years ago | 63 | apache-2.0 | JavaScript | |||||
Android vector icon animation tool | ||||||||||
Swirl | 763 | 29 | 2 years ago | 5 | July 29, 2020 | 4 | apache-2.0 | Java | ||
Android's animated fingerprint icon provided in a simple, standalone library. | ||||||||||
Hamburger React | 728 | 1 | 8 months ago | 20 | April 05, 2022 | 3 | mit | TypeScript | ||
Animated hamburger menu icons for React (1.5 KB) 🍔 | ||||||||||
Sksplashview | 476 | 13 | 4 years ago | 4 | July 02, 2016 | 4 | mit | Objective-C | ||
Create custom animated splash views similar to the ones in the Twitter, Uber and Ping iOS app. |
Originally created for the old UI converted by @arsaboo and @ciotlosm to Lovelace and now converted to Lit to make it even better.
This card uses the awesome animated SVG weather icons by amCharts.
Thanks for all picking this card up.
You have 2 options, hosted or self hosted (manual). The first option needs internet and will update itself.
Firefox < 66 does not support all the needed functions yet for the editor.
You change this by enabling javascript.options.dynamicImport
in about:config
.
Or use the version without the editor: Version without editor
Add the following to resources in your lovelace config:
- url: https://cdn.jsdelivr.net/gh/bramkragten/weather-card/dist/weather-card.min.js
type: module
/config/www/custom-lovelace/weather-card/
. (or an other folder in /config/www/
)/config/www/custom-lovelace/weather-card/icons/
(or an other folder in /config/www/
)/config/www/custom-lovelace/weather-card/
. (or the folder you used above)Add the following to resources in your lovelace config:
resources:
- url: /local/custom-lovelace/weather-card/weather-card.js
type: module
And add a card with type custom:weather-card
:
type: custom:weather-card
entity: weather.yourweatherentity
name: Optional name
If you want to use your local icons add the location to the icons:
type: custom:weather-card
entity: weather.yourweatherentity
icons: "/local/custom-lovelace/weather-card/icons/"
You can choose wich elements of the weather card you want to show:
The 3 different rows, being:
type: custom:weather-card
entity: weather.yourweatherentity
current: true
details: false
forecast: true
hourly_forecast: false
number_of_forecasts: 5
If you want to show the sunrise and sunset times, make sure the sun
component is enabled:
# Example configuration.yaml entry
sun:
When using Dark Sky you should put the mode to daily
if you want a daily forecast with highs and lows.
# Example configuration.yaml entry
weather:
- platform: darksky
api_key: YOUR_API_KEY
mode: daily
When using OpenWeather map you can select hourly(default) or daily forecast to show.
# Example configuration.yaml entry
weather:
- platform: openweathermap
api_key: YOUR_API_KEY