Advertisement
Paceusa

Script Android Firmware Update

Feb 4th, 2022
1,379
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <!DOCTYPE html>
  2.  
  3. <html>
  4. <head>
  5. <title>Android Firmware Update</title>
  6. <meta name="apple-mobile-web-app-capable" content="yes">
  7. <script src="https://code.jquery.com/jquery-latest.js"></script>
  8. <script>  
  9.  
  10.  
  11. var count=0;
  12. var stage=1;
  13. var stage2=3;
  14. var counter=setInterval(timer, 4830); //1000 will  run it every 1 second
  15. var ref="Configuring updates";
  16.  
  17. function timer()
  18. {
  19.   count=count+1;
  20.   if (count <= 0)
  21.   {
  22.      clearInterval(counter);
  23.      return;
  24.   }
  25.  
  26.  document.getElementById("timer").innerHTML=count +'%';
  27.  
  28.  
  29.  
  30.    if (count > 99)
  31.   {
  32.      stage=stage+1;
  33.       document.getElementById("stage").innerHTML=stage +'';
  34.      count=0;
  35.       return;
  36.   }
  37.  
  38.      if (stage > 3)
  39.   {
  40.      stage2=68;
  41.      ref="Installing the Matrix";
  42.       document.getElementById("ref").innerHTML=ref +'';
  43.       document.getElementById("stage2").innerHTML=stage2 +'';
  44.       return;
  45.   }
  46.  
  47. }
  48.  
  49.  
  50.  
  51.  
  52. </script>
  53. <style>
  54.  
  55. body {
  56.  
  57.     background:  #242424 no-repeat center center fixed;
  58. user-select:none;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;
  59.     -webkit-background-size: cover;
  60.     -moz-background-size: cover;
  61.     -o-background-size: cover;
  62.     background-size: cover;
  63. vertical-align:middle;
  64. text-align:center;
  65. z-index: -1;
  66. margin:0;
  67. padding:0;
  68.  cursor: url(http://fakeupdate.net/assets/img/gQyFbtU.png), auto;
  69.  
  70. }
  71.  
  72. .CT {
  73.  
  74. vertical-align:middle;
  75. position: absolute;
  76. top: 40%;
  77. height: 70px;
  78. margin-left:auto;
  79. margin-right:auto;
  80. display:block;
  81. width:550px;
  82. margin-top: -5%;
  83. font-family:Segoe UI, Arial;
  84. font-size:23px;
  85. color:#fff;
  86. font-weight:normal;
  87. text-align:center;
  88. user-select:none;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;
  89. }
  90.  
  91. .image_block {
  92.  
  93.  
  94. position: absolute;
  95. bottom: 17px;
  96. left: 50%;
  97. width: 50%;
  98. margin: -5% 0 0 -25%;
  99.        
  100.  
  101. }
  102. p {
  103.  
  104. display:block;
  105. float:middle;
  106. text-align:center;
  107. width:100%;
  108.  
  109.  
  110. }
  111.  
  112. .centeragain {
  113.  
  114. width:550px;
  115. margin:0px auto;
  116. text-align:left;
  117.  
  118.  
  119. }
  120. .messageBox {  
  121. display:block;
  122. color:#67A2E6;
  123. font-family:Segoe UI, Arial;
  124. font-size:20px;
  125. margin-left:auto;
  126. margin-right:auto;
  127. text-align:center;
  128. user-select:none;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;
  129. z-index:999;  }  
  130.  
  131.  
  132. </style>
  133. </head>
  134. <body>
  135. <div style="text-align:center;display:block;position:absolute;min-width:100%; min-height:100%;margin:0;padding:0;">
  136. <div class="centeragain">
  137. <div class="CT">
  138. <center>
  139. <img src="https://fakeupdate.net/mobile/android/android.gif" style="width:50%;" /><br>
  140. <p style="font-family:Roboto, Arial;font-size:24pt">Installing system update...</p>
  141. </div>
  142. </div>
  143. </div>
  144. </body>
  145. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement