Torrents Stats
- Partagées
- 130 Go
- Téléchargées
- 0 bytes
- Ratio
- -
- Messages
- 585
- J'aime
- 354
- Trophées
- 1 538
- Inscrit
- 31 Décembre 2015
- 1.1
- 1.2
- 1.3
- 1.4
- Ajouter le JS Suivant avant le </ head> dans temp PAGE_CONTAINER
Code:
<script>
$(function() {
$("body").append($("<div></div>").attr("id", "progress"));
$("#progress").width((50 + Math.random() * 30) + "%");
});
$(window).load(function() {
$("#progress").width("101%").delay(300).fadeOut(400);
});
</script>
2. Ajouter le code suivant dans EXTRA.css
Code:
#progress {position: fixed;
z-index: 100;
top: 0;
left: -6px;
width: 1%;
height: 3px;
background: #ff0000;
border-radius: 1px;
transition: width 500ms ease-out,opacity 400ms linear;
}
Dernière édition: