{#
<img src="{{ asset('assets/img/Dic_logoPNG.png') }}" class="img-fluid" width="2%" alt="logoDic" style="margin-top: -5px;"/>
#}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Cancionero</title>
<style>
#particles-js{
position: fixed;
width: 100%;
height: 100vh;
z-index: -1;
left: 10px
}
</style>
<!-- Bootstrap-->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css" integrity="sha384-Zenh87qX5JnK2Jl0vWa8Ck2rdkQ2Bzep5IDxbcnCeuOxjzrPF/et3URy9Bv1WTRi" crossorigin="anonymous"/>
<!-- DataTable -->
<link rel="stylesheet" href="https://cdn.datatables.net/1.12.1/css/dataTables.bootstrap5.min.css"/>
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css" integrity="sha512-xh6O/CkQoPOWDdYTDqeRdPCVd1SpvCA9XXcUnZS2FmJNp1coAFzvtCN9BmamE+4aHK8yyUHUSCcJHgXloTyT2A==" crossorigin="anonymous" referrerpolicy="no-referrer"/>
</head>
<body>
<div class="container my-4">
<div id="particles-js"></div>
<div class="row justify-content-center">
<div class="col-8">
<img src="{{ asset('assets/img/heroCancionero.png') }}" class="img-fluid"/>
<div class="d-flex align-items-center text-primary" id="loadingTable" style="color: #ff5000 !important;">
<strong>Cargando...</strong>
<div class="spinner-border ms-auto" role="status" aria-hidden="true"></div>
</div>
<table id="datatable_users" class="table table-striped" style="display: none;">
<thead>
<tr>
<th class="centered">Código</th>
<th class="centered">Nombre Canción</th>
<th class="centered">Género</th>
<th class="centered">Autor</th>
</tr>
</thead>
<tbody id="tableBody_users"></tbody>
</table>
</div>
</div>
</div>
<!-- Bootstrap-->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-OERcA2EqjJCMA+/3y+gxIOqMEjwtxJY7qPCqsdltbNJuaOe923+mo//f6V8Qbsw3" crossorigin="anonymous"></script>
<!-- jQuery -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<!-- DataTable -->
<script src="https://cdn.datatables.net/1.12.1/js/jquery.dataTables.min.js"></script>
<script src="https://cdn.datatables.net/1.12.1/js/dataTables.bootstrap5.min.js"></script>
{# Particles #}
<script type="text/javascript" src="{{ asset('assets/js/particles.min.js') }}"></script>
<!-- Custom JS -->
<script src="{{ asset('assets/js/karaoke/cliente/cancionero.js') }}"></script>
<script>
particlesJS(
{
"particles": {
"number": {
"value": 85,
"density": {
"enable": true,
"value_area": 800
}
},
"color": {
"value": "#ff5000"
},
"shape": {
"type": "circle",
"stroke": {
"width": 0,
"color": "#ff5000"
},
"polygon": {
"nb_sides": 5
},
"image": {
"src": "img/github.svg",
"width": 100,
"height": 100
}
},
"opacity": {
"value": 0.5,
"random": false,
"anim": {
"enable": false,
"speed": 1,
"opacity_min": 0.1,
"sync": false
}
},
"size": {
"value": 3,
"random": true,
"anim": {
"enable": false,
"speed": 40,
"size_min": 0.1,
"sync": false
}
},
"line_linked": {
"enable": true,
"distance": 150,
"color": "#ff5000",
"opacity": 0.4,
"width": 1
},
"move": {
"enable": true,
"speed": 11.22388442605866,
"direction": "none",
"random": false,
"straight": false,
"out_mode": "out",
"bounce": false,
"attract": {
"enable": false,
"rotateX": 600,
"rotateY": 1200
}
}
},
"interactivity": {
"detect_on": "canvas",
"events": {
"onhover": {
"enable": false,
"mode": "repulse"
},
"onclick": {
"enable": true,
"mode": "push"
},
"resize": true
},
"modes": {
"grab": {
"distance": 400,
"line_linked": {
"opacity": 1
}
},
"bubble": {
"distance": 400,
"size": 40,
"duration": 2,
"opacity": 8,
"speed": 3
},
"repulse": {
"distance": 200,
"duration": 0.4
},
"push": {
"particles_nb": 4
},
"remove": {
"particles_nb": 2
}
}
},
"retina_detect": true
}
)
</script>
</body>
</html>