Сообщение от Блондинка
|
сделать разделитель ':' мигающим
|
<!DOCTYPE html>
<html>
<head>
<title>Untitled</title>
<meta charset="utf-8">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/time-to@1.2.3/timeTo.css">
<script src="https://cdn.jsdelivr.net/npm/time-to@1.2.3/jquery.time-to.js"></script>
<style type="text/css">
div.your-clock > span:nth-child(6), div.your-clock > span:nth-child(3) {
animation: color 1s ease-in-out infinite;
}
@keyframes color {
50% {
color: #FFFFFF;
}
}
</style>
<script>
$(function() {
var clock = $('.your-clock').timeTo({theme: "black"})
});
</script>
</head>
<body>
<div class="your-clock"></div>
</body>
</html>