- Admin
- #1
Jaxel
Administrator
This video is expansion of the previous tutorial (http://8wr.io/threads/video-tutorial-advanced-scripting-and-coding.2/). As such, I will only be listed the new code added in this video.
Page HTML:
Code:
<div class="countries c1" id="c1"><div class="flag"></div></div>
<div class="countries c2" id="c2"><div class="flag"></div></div>
Page CSS:
Code:
.countries { position: absolute; top: 10px; }
.countries.c1 { left: 10px; }
.countries.c2 { right: 10px; }
.flag
{
width: 100px;
height: 50px;
background-position: center;
background-size: 100%;
}
.flag.CAN { background-image: url('http://data.8wr.io/sba/1/countries/CAN.png'); }
.flag.MEX { background-image: url('http://data.8wr.io/sba/1/countries/MEX.png'); }
.flag.USA { background-image: url('http://data.8wr.io/sba/1/countries/USA.png'); }
Page JS:
Code:
let c1 = docData['players_1'].split('||');
let c2 = docData['players_2'].split('||');
docData['players_1'] = c1[0];
docData['players_2'] = c2[0];
$('#c1 .flag').removeClass().addClass('flag '+c1[1]);
$('#c2 .flag').removeClass().addClass('flag '+c2[1]);