I have an illustration made by an illustrator. This is a static thermal image with 6 particular points that I would like to animate (according to the temperature obviously).
For example, I would update a JSON file and according to this file, the image would update itself :
{
"sensors": [
{
"name": "top",
"value": 0
},
{
"name": "middle",
"value": 3
},
{
"name": "bottom",
"value": 1
}
]
}
It would also need to update the legend beside the image (not showed).
Something like this video, but with a much higher quality result.
I was thinking about doing it in CSS but I don't know how to deal with custom shape to have because the illustration is not square and radial-gradient (like this post) doesn't look beautiful when rendered on the image.
Any other technical solutions I might look into ?