-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
32 lines (21 loc) · 1.06 KB
/
script.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
let url = 'dados/dataset.xml'
$.ajax(url)
.done(function(xml){
$(xml).find('uchiha').each(function(){
$('.swiper-wrapper').append(`<div class = 'swiper-slide'><div class='rosto'><img src='${$(this).find('foto').text()}' class='image-card'></div><div class='oculto'><p class='nome'> ${ $(this).find('nome').text()}</p> <p class='idade'> Idade: ${ $(this).find('idade').text()}</p><p class='olhos'> Olhos: ${ $(this).find('olhos').text()}</p><p class='jutsu'> Principais Jutsus: ${ $(this).find('jutsu').text()}</p><p class='status'> Status: ${ $(this).find('status').text()}</p></div></div`)
let click = true;
$('.swiper').on('click', 'img', function() {
if (!click) {
$('p').css('opacity', '0');
click = true;
} else {
$('p').css('opacity', '1');
click = false;
$('span').css('display', 'none')
}
});
})
})
.fail(function(){
alert('Erro de leitura na XML')
})