<div class="thermometer--very-low">
<span>You are<strong></strong></span>
<div class="glass">
<div class="liquid"></div>
<svg class="ruler">
<rect x="0px" y="0" width="20%" height="100%" fill="url(#ticks--very-low)" rx="2"/>
<rect x="20%" y="0" width="20%" height="100%" fill="url(#ticks--low)" rx="2"/>
<rect x="40%" y="0" width="20%" height="100%" fill="url(#ticks--moderate)" rx="2"/>
<rect x="60%" y="0" width="20%" height="100%" fill="url(#ticks--high)" rx="2"/>
<rect x="80%" y="0" width="20%" height="100%" fill="url(#ticks--very-high)" rx="2"/>
<defs>
<pattern id="ticks--very-low" class="ticks--very-low" width="60px" height="100%" patternUnits="userSpaceOnUse" x="0">
<line x1="1px" x2="1px" y2="6px" />
<line x1="12px" x2="12px" y2="6px" />
<line x1="24px" x2="24px" y2="6px" />
<line x1="36px" x2="36px" y2="6px" />
<line x1="48px" x2="48px" y2="10px" />
</pattern>
<pattern id="ticks--low" class="ticks--low" width="60px" height="100%" patternUnits="userSpaceOnUse" x="0">
<line x1="1px" x2="1px" y2="6px" />
<line x1="12px" x2="12px" y2="6px" />
<line x1="24px" x2="24px" y2="6px" />
<line x1="36px" x2="36px" y2="6px" />
<line x1="48px" x2="48px" y2="10px" />
</pattern>
<pattern id="ticks--moderate" class="ticks--moderate" width="60px" height="100%" patternUnits="userSpaceOnUse" x="0">
<line x1="1px" x2="1px" y2="6px" />
<line x1="12px" x2="12px" y2="6px" />
<line x1="24px" x2="24px" y2="6px" />
<line x1="36px" x2="36px" y2="6px" />
<line x1="48px" x2="48px" y2="10px" />
</pattern>
<pattern id="ticks--high" class="ticks--high" width="60px" height="100%" patternUnits="userSpaceOnUse" x="0">
<line x1="1px" x2="1px" y2="6px" />
<line x1="12px" x2="12px" y2="6px" />
<line x1="24px" x2="24px" y2="6px" />
<line x1="36px" x2="36px" y2="6px" />
<line x1="48px" x2="48px" y2="10px" />
</pattern>
<pattern id="ticks--very-high" class="ticks--very-high" width="60px" height="100%" patternUnits="userSpaceOnUse" x="0">
<line x1="1px" x2="1px" y2="6px" />
<line x1="12px" x2="12px" y2="6px" />
<line x1="24px" x2="24px" y2="6px" />
<line x1="36px" x2="36px" y2="6px" />
<line x1="48px" x2="48px" y2="10px" />
</pattern>
</defs>
</svg>
</div>
</div>
$low: #B8E1F2;
$veryLow: #249AA7;
$moderate: #ABD25E;
$high: #F8C830;
$veryHigh: #F1594A;
body {
background: #454545;
}
.thermometer {
max-width: 80%;
margin: 2rem auto;
span {
font-family: Verdana;
font-size: 1rem;
color: #ccc;
min-width: 100%;
text-align: center;
display: block;
margin-bottom: 1.25rem;
}
.liquid {
display: block;
width: 100%;
height: 1.275rem;
border: 1px solid darken(#ebebeb, 10);
border-radius: 10px;
margin: .25rem auto 0;
position: relative;
&:before {
position: absolute;
content: "";
height: 70%;
left: 3px;
top: 14%;
border-radius: 10px;
transition: width .3s ease;
}
}
.ruler {
height: .625rem;
width: 100%;
margin-left: 2px;
.ticks {
&-low,
&--low,
&--moderate,
&--high,
&-high {
line {
stroke-width: 2px;
shape-rendering:crispEdges
}
}
&-low { stroke: $veryLow; }
&--low { stroke: $low; }
&--moderate { stroke: $moderate; }
&--high { stroke: $high; }
&-high { stroke: $veryHigh; }
}
}
&-low,
&--low,
&--moderate,
&--high,
&-high {
@extend .thermometer;
}
&-low {
strong {
color: $veryLow;
&:before { content: " freezing";}
}
.liquid:before {
background: $veryLow;
width: 10%;
}
}
&--low {
strong {
color: $low;
&:before { content: " cold";}
}
.liquid:before {
background: $low;
width: 30%;
}
}
&--moderate {
strong {
color: $moderate;
&:before { content: " ok";}
}
.liquid:before {
background: $moderate;
width: 50%;
}
}
&--high {
strong {
color: $high;
&:before { content: " hot";}
}
.liquid:before {
background: $high;
width: 70%;
}
}
&-high {
strong {
color: $veryHigh;
&:before { content: " blazing";}
}
.liquid:before {
background: $veryHigh;
width: 99%;
}
}
}
xxxxxxxxxx
var perfis = ['very-low', 'low', 'moderate', 'high', 'very-high'];
setInterval(function() {
var random = perfis[Math.floor(Math.random() * perfis.length)];
$('div[class^=thermometer]').removeClass().addClass('thermometer--'+random);
}, 3500);