BOLO hits now make the plate flash for 3 seconds

This commit is contained in:
Dan
2020-02-22 11:21:42 +00:00
parent 16c59802fc
commit ab479eb3f3
3 changed files with 28 additions and 9 deletions

View File

@@ -719,6 +719,16 @@ button:focus { outline: none; }
color: rgb( 100, 100, 100 );
}
.plate_hit {
animation: plate_flash linear 0.75s infinite;
}
@keyframes plate_flash {
0% { opacity: 1.0; }
50% { opacity: 0.0; }
100% { opacity: 1.0; }
}
#plateReaderBox {
width: 225px;
height: 300px;