forked from VictorLopes3101/crp-iframe-player
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
69 lines (68 loc) · 3.78 KB
/
index.html
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html>
<head>
<title>Crunchyroll Player</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@1,500&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="assets/css/player.css">
<link rel="stylesheet" type="text/css" href="assets/css/download_dialog.css">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-154158844-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-154158844-1');
</script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="assets/js/jwplayer.js"></script>
<script src="assets/js/player.js"></script>
</head>
<body>
<div class="loading_container">
<div class="loading_icon">
<svg width="30px" height="30px" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="xMidYMid" class="lds-rolling" style="background: none;">
<circle cx="50" cy="50" fill="none" ng-attr-stroke="{{config.color}}" ng-attr-stroke-width="{{config.width}}" ng-attr-r="{{config.radius}}" ng-attr-stroke-dasharray="{{config.dasharray}}" stroke="#ffffff" stroke-width="10" r="35" stroke-dasharray="164.93361431346415 56.97787143782138" transform="rotate(159.051 50 50)">
<animateTransform attributeName="transform" type="rotate" calcMode="linear" values="0 50 50;360 50 50" keyTimes="0;1" dur="1s" begin="0s" repeatCount="indefinite"></animateTransform>
</circle>
</svg>
</div>
<div class="loading_text_container">
<div class="loading_text">Seu video iniciara em instantes (^-^)<span class="corta_linha"></span>Aguardando dados da stream..</div>
</div>
</div>
<div class="modal" style="transform: translate3d(0px, 0px, 0px);visibility: hidden;">
<button class="close-modal">×</button>
<div class="download-item">
<span class="partdditem hdlabel not-copyable"><sup>HD</sup></span>
<span class="partdditem quality not-copyable">1080p</span>
<span id="1080p_down_size" class="partdditem size not-copyable">0 MB</span>
<a id="1080p_down_url" class="partdditem down-icon" href="javascript:void(0);" target="_top" download></a>
</div>
<div class="download-item">
<span class="partdditem hdlabel not-copyable"><sup>HD</sup></span>
<span class="partdditem quality not-copyable">720p</span>
<span id="720p_down_size" class="partdditem size not-copyable">0 MB</span>
<a id="720p_down_url" class="partdditem down-icon" href="javascript:void(0);" target="_top" download></a>
</div>
<div class="download-item">
<span class="partdditem hdlabel not-copyable"><sup></sup></span>
<span class="partdditem quality not-copyable">480p</span>
<span id="480p_down_size" class="partdditem size not-copyable">0 MB</span>
<a id="480p_down_url" class="partdditem down-icon" href="javascript:void(0);" target="_top" download></a>
</div>
<div class="download-item">
<span class="partdditem hdlabel not-copyable"><sup></sup></span>
<span class="partdditem quality not-copyable">360p</span>
<span id="360p_down_size" class="partdditem size not-copyable">0 MB</span>
<a id="360p_down_url" class="partdditem down-icon" href="javascript:void(0);" target="_top" download></a>
</div>
<div class="download-item">
<span class="partdditem hdlabel not-copyable"><sup></sup></span>
<span class="partdditem quality not-copyable">240p</span>
<span id="240p_down_size" class="partdditem size not-copyable">0 MB</span>
<a id="240p_down_url" class="partdditem down-icon" href="javascript:void(0);" target="_top" download></a>
</div>
</div>
<div id="player_div"></div>
</body>
</html>