Стильный вид онлайн статистики для uCoz
1 2 3 4 5 6 7 8 9 10 |
.statistics {margin: 20px 0 17px; text-align: center;} .statistics .blocker {display: inline-block; margin: 0 2px; position: relative;} .statistics .blocker div {border: 1px solid; border-radius: 50%; width: 60px; height: 60px; line-height: 53px; font-size: 16px;} .statistics span {display: block; border-radius: 3px; width: 54px; height: 20px; line-height: 20px; font-size: 10px; color: #fff; text-transform: uppercase; position: absolute; right: 3px; top: 47px;} .statistics .blocker:nth-of-type(1) div {border-color: #ca6539; color: #ca6539;} .statistics .blocker:nth-of-type(1) span {background: #ca6539;} .statistics .blocker:nth-of-type(2) div {border-color: #8bca39; color: #8bca39;} .statistics .blocker:nth-of-type(2) span {background: #8bca39;} .statistics .blocker:nth-of-type(3) div {border-color: #cac839; color: #cac839;} .statistics .blocker:nth-of-type(3) span {background: #cac839;} |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
<div class="statistics"> <div class="blocker"> <div id="tnum"></div> <span>Всего</span> </div> <div class="blocker"> <div id="unum"></div> <span>Юзеров</span> </div> <div class="blocker"> <div id="gnum"></div> <span>Гостей</span> </div> </div> <div style="display: none;">$ONLINE_COUNTER$</div> <script type="text/javascript"> $('#tnum').text($('#onl1 b').text()); $('#gnum').text($('#onl2 b').text()); $('#unum').text($('#onl3 b').text()); </script> |