RageQxeen

King

Feb 4th, 2020
246
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 15.53 KB | None | 0 0
  1. <html>
  2. <body>
  3. <script defer>
  4. window.onload = function() {
  5. var isCtrl = false;
  6. document.onkeyup=function(e)
  7. {
  8. if(e.which == 17)
  9. isCtrl=false;
  10. }
  11. document.onkeydown=function(e)
  12. {
  13. if(e.which == 17)
  14. isCtrl=true;
  15. if((e.which == 85) || (e.which == 67) && (isCtrl == true))
  16. {
  17. return false;
  18. }
  19. }
  20. var isNS = (navigator.appName == "Netscape") ? 1 : 0;
  21. if(navigator.appName == "Netscape") document.captureEvents(Event.MOUSEDOWN||Event.MOUSEUP);
  22. function mischandler(){
  23. return false;
  24. }
  25. function mousehandler(e){
  26. var myevent = (isNS) ? e : event;
  27. var eventbutton = (isNS) ? myevent.which : myevent.button;
  28. if((eventbutton==2)||(eventbutton==3)) return false;
  29. }
  30. document.oncontextmenu = mischandler;
  31. document.onmousedown = mousehandler;
  32. document.onmouseup = mousehandler;
  33.  
  34. if (document.addEventListener) { // IE >= 9; other browsers
  35. document.addEventListener('contextmenu', function(e) {
  36. alert(" Try asking RageQxeen for her codes instead."); //here you draw your own menu
  37. e.preventDefault();
  38. }, false);
  39. } else { // IE < 9
  40. document.attachEvent('oncontextmenu', function() {
  41. alert("O sun, abide to death.");
  42. window.event.returnValue = false;
  43. });
  44. }
  45. };
  46. </script>
  47. <script>
  48. function openForm() {
  49. document.getElementById("myForm").style.display = "block";
  50. }
  51.  
  52. function closeForm() {
  53. document.getElementById("myForm").style.display = "none";
  54. }
  55. </script>
  56. <style type="text/css">
  57.  
  58. @import url('https://fonts.googleapis.com/css?family=VT323|Share+Tech+Mono|Cinzel|Cinzel+Decorative');
  59.  
  60. html, body {
  61. background: #000;
  62. background-image:url("");
  63. background-size:400px;
  64. background-repeat:no-repeat;
  65. background-position:center bottom;
  66. }
  67.  
  68. ::-webkit-scrollbar-button:vertical:{
  69. background-color: #transparent;}
  70.  
  71. ::-webkit-scrollbar-thumb:vertical {
  72. background-color:#transparent;
  73. height:150px;}
  74.  
  75. ::-webkit-scrollbar-thumb:horizontal {
  76. background-color:#transparent;
  77. height:60px;}
  78.  
  79.  
  80. ::-webkit-scrollbar {
  81. height:60px;
  82. width:5px;
  83. background-color:#transparent;}
  84.  
  85. #image {
  86. width: 23vw;
  87. margin: 0px;
  88. border: none;
  89. height: 40vw;
  90. background-color:transparent;
  91. position: absolute;
  92. right: 0vw;
  93. bottom: 0vw;
  94. background-image:url("https://cdn.discordapp.com/attachments/553421046343139328/673475659875614720/MOSHED-2020-2-2-4-30-5.gif");
  95. background-repeat:no-repeat;
  96. background-position: bottom;
  97. background-size: 100%;
  98. }
  99.  
  100. .loader {
  101. position:absolute;
  102. top: 25vw;
  103. left: 20vw;
  104. transform:translate(-50%,-50%);
  105. width:500px;
  106. height:500px;
  107. box-sizing:border-box;
  108. }
  109. .loader .face {
  110. position:absolute;
  111. border:2px solid #121212;
  112. }
  113. .loader .face.face1 {
  114. top:0;
  115. left:0;
  116. right:0;
  117. bottom:0;
  118. background:#000;
  119. box-shadow:0 0 10px rgba(0,0,0,1);
  120. border-radius:50%;
  121. border-left:2px solid #20C20E;
  122. border-top:2px solid #20C20E;
  123. animation:animate 3s linear infinite;
  124. }
  125. .loader .face.face2 {
  126. top:30px;
  127. left:30px;
  128. right:30px;
  129. bottom:30px;
  130. background:#000;
  131. box-shadow:0 0 10px rgba(0,0,0,1);
  132. border-radius:50%;
  133. border-right:2px solid #04ca9f;
  134. border-bottom:2px solid #04ca9f;
  135. animation:animate 3s linear reverse infinite;
  136. }
  137. .loader .face .circle {
  138. position:absolute;
  139. top:calc(50% - 1px);
  140. left:50%;
  141. width:50%;
  142. height:2px;
  143. transform-origin:left;
  144. }
  145. .loader .face.face1 .circle {
  146. transform: rotate(-45deg);
  147. }
  148. .loader .face.face2 .circle {
  149. transform: rotate(-45deg);
  150. }
  151. .loader .face .circle:before {
  152. content:'';
  153. position:absolute;
  154. width:10px;
  155. height:10px;
  156. border-radius:50%;
  157. background:#fff;
  158. top:-4px;
  159. right:-6px;
  160.  
  161. }
  162. .loader .face.face1 .circle:before {
  163. background:#20C20E;
  164. box-shadow: 0 0 20px #ff0,
  165. 0 0 40px #ff0,
  166. 0 0 60px #ff0,
  167. 0 0 80px #ff0,
  168. 0 0 100px #ff0,
  169. 0 0 5px rgba(255,255,0,.1);
  170. }
  171. .loader .face.face2 .circle:before {
  172. background:#04ca9f;
  173. box-shadow: 0 0 20px #03a9f4,
  174. 0 0 40px #03a9f4,
  175. 0 0 60px #03a9f4,
  176. 0 0 80px #03a9f4,
  177. 0 0 100px #03a9f4,
  178. 0 0 5px rgba(3,169,244,1);
  179. }
  180.  
  181. @keyframes animate {
  182. 0% {
  183. transform: rotate(0deg);
  184. }
  185. 100% {
  186. transform:rotate(360deg);
  187. }
  188. }
  189.  
  190. #nav {
  191. background-color: transparent;
  192. width: 22vw;
  193. height: 1vw;
  194. margin:auto;
  195. position: absolute;
  196. right: 17vw;
  197. top: 1vw;
  198. text-align:right;
  199. z-index:4;
  200. }
  201.  
  202. #nav a, #nav a:link, #nav a:visited {
  203. display:inline-block;
  204. height: .8vw;
  205. width: 3vw;
  206. text-decoration:none;
  207. background: #20C20E;
  208. margin: 5px;
  209. border: double #000 5px;
  210. -webkit-transition: 0.5s linear;
  211. -moz-transition: 0.5s linear;
  212. -o-transition: 0.5s linear;
  213. transition: 0.5s linear;
  214. }
  215.  
  216. #nav a:active, #nav a:hover {
  217. display:inline-block;
  218. height: .8vw;
  219. width: 3vw;
  220. text-decoration:none;
  221. background: #04ca9f;
  222. margin: 5px;
  223. border: double #000 5px;
  224. -webkit-transition: 0.5s linear;
  225. -moz-transition: 0.5s linear;
  226. -o-transition: 0.5s linear;
  227. transition: 0.5s linear;
  228. }
  229.  
  230. #container {
  231. background-color: #000;
  232. width: 56.6vw;
  233. height: 32vw;
  234. margin:auto;
  235. position: absolute;
  236. padding: 0px;
  237. border: 2px solid #04ca9f;
  238. right: 10vw;
  239. top: 10vw;
  240. z-index:1;
  241. }
  242.  
  243.  
  244.  
  245. #wrap {
  246. width:260px;
  247. height: 90px;
  248. position: absolute;
  249. top: 27vw;
  250. left:20.5vw;
  251. margin:-100px 0 0 -150px;
  252. text-align:center;
  253. z-index: 6;
  254. }
  255.  
  256.  
  257. #wrap a {
  258. font-family: 'VT323', sans-serif;
  259. font-size: 120px;
  260. color:#20C20E;
  261. text-transform:uppercase;
  262. text-decoration: none;
  263. background-color: #000;
  264. -webkit-transition: .25s ease;
  265. transition: .25s ease;
  266. }
  267.  
  268. /* Button used to open the contact form - fixed at the bottom of the page */
  269. .open-button {
  270. background-color: #000;
  271. color: white;
  272. font-family: 'VT323';
  273. font-size: 100px;
  274. text-align: center;
  275. padding: 16px 20px;
  276. border: 1px solid #000;
  277. cursor: pointer;
  278. position: fixed;
  279. top: 21.5vw;
  280. left: 12.8vw;
  281. width: 280px;
  282. }
  283.  
  284. /* The popup form - hidden by default */
  285. .form-popup {
  286. display: none;
  287. position: fixed;
  288. bottom: 5vw;
  289. right: 8vw;
  290. z-index: 9;
  291. -webkit-animation: slit-in-horizontal 0.45s ease-out both;
  292. animation: slit-in-horizontal 0.45s ease-out both;
  293. }
  294.  
  295. /* Add styles to the form container */
  296. .form-container {
  297. max-width: 56vw;
  298. max-height: 32vw;
  299. padding: 5px;
  300. padding-top: 5vw;
  301. margin: 0px 0px 0px 0px;
  302. background-color: #000;
  303. color: #fff;
  304. border: 2px solid #04ca9f;
  305. -webkit-animation: slit-in-horizontal 0.45s ease-out both;
  306. animation: slit-in-horizontal 0.45s ease-out both;
  307. }
  308.  
  309. /* Add some hover effects to buttons */
  310. .form-container .btn:hover, .open-button:hover {
  311. opacity: 1;
  312. } transition: .25s ease;
  313. }
  314.  
  315. #wrap a:hover, #popup a:hover {
  316. color:#04ca9f;
  317. border: 1px solid #000;
  318. }
  319.  
  320.  
  321. .name {position: absolute;
  322. font-family: 'Cinzel Decorative';
  323. color: #fff;
  324. font-size: 6vw;
  325. top: -6.2vw;
  326. left: -1vw;
  327. width: 45vw;
  328. height: 9vw;
  329. border: 0px solid #000;
  330. text-align: justify;
  331. text-shadow: -1px 0 #c0c0c0, 0 1px #000,1px 0 #000, 0 -1px #c0c0c0;
  332. overflow: auto;
  333. padding:5px 5px 5px 5px;
  334. z-index: 2;}
  335.  
  336. .title { background: transparent;
  337. background:url('https://media1.tenor.com/images/f1d3ed64627b5bc61278dd56cefe4a7f/tenor.gif?itemid=8491515') repeat;
  338. background-position: center;
  339. position: absolute;
  340. font-family: 'Cinzel Decorative';
  341. font-size: 6vw;
  342. top: -6.2vw;
  343. left: -1vw;
  344. width: 45vw;
  345. height: 9vw;
  346. text-align: justify;
  347. padding:5px 5px 5px 5px;
  348. -webkit-text-fill-color: transparent;
  349. -webkit-background-clip: text;
  350. z-index: 3;}
  351.  
  352. .alias {position: absolute;
  353. font-family: 'Cinzel';
  354. color: #20C20E;
  355. font-size: 2vw;
  356. bottom: -2.5vw;
  357. right: 0vw;
  358. width: 53vw;
  359. height: 2.2vw;
  360. border: 0px solid #000;
  361. text-align: center;
  362. text-shadow: -1px 0 #c0c0c0, 0 1px #000,1px 0 #000, 0 -1px #c0c0c0;
  363. overflow: auto;
  364. padding:5px 5px 5px 5px;
  365. z-index: 2;}
  366.  
  367. i{color: #f0f0f0;}
  368. b{color: #fff;}
  369. a{color: #f0f0f0; text-decoration: none;}
  370. h1{border-bottom: 1px solid #fff; text-align: center; font-size: 30px; font-family: 'Share Tech Mono', cursive; color: #fff;}
  371. h2{border-bottom: 1px solid #fff; text-align: center; font-size: 25px; font-family: 'Share Tech Mono', cursive; color: #fff;}
  372. h3{border-bottom: 1px solid #fff; text-align: center; font-size: 23px; font-family: 'Share Tech Mono', cursive; color: #fff;}
  373.  
  374. @-webkit-keyframes slit-in-horizontal {
  375. 0% {
  376. -webkit-transform: translateZ(-800px) rotateX(90deg);
  377. transform: translateZ(-800px) rotateX(90deg);
  378. opacity: 0;
  379. }
  380. 54% {
  381. -webkit-transform: translateZ(-160px) rotateX(87deg);
  382. transform: translateZ(-160px) rotateX(87deg);
  383. opacity: 1;
  384. }
  385. 100% {
  386. -webkit-transform: translateZ(0) rotateX(0);
  387. transform: translateZ(0) rotateX(0);
  388. }
  389. }
  390. @keyframes slit-in-horizontal {
  391. 0% {
  392. -webkit-transform: translateZ(-800px) rotateX(90deg);
  393. transform: translateZ(-800px) rotateX(90deg);
  394. opacity: 0;
  395. }
  396. 54% {
  397. -webkit-transform: translateZ(-160px) rotateX(87deg);
  398. transform: translateZ(-160px) rotateX(87deg);
  399. opacity: 1;
  400. }
  401. 100% {
  402. -webkit-transform: translateZ(0) rotateX(0);
  403. transform: translateZ(0) rotateX(0);
  404. }
  405. }
  406.  
  407. </style>
  408. <div id="image"></div>
  409. <div class="loader">
  410. <div class="face face1">
  411. <div class="circle"></div>
  412. </div>
  413. <div class="face face2">
  414. <div class="circle"></div>
  415. </div>
  416. </div>
  417.  
  418.  
  419. <button class="open-button" onclick="openForm()">Enter</button>
  420.  
  421. <div class="form-popup" id="myForm">
  422. <form action="/action_page.php" class="form-container">
  423.  
  424. <div class="name">King</div>
  425. <div class="title">King</div>
  426. <div class="alias">I don't trust anything or anyone below the sun</div>
  427.  
  428. <div id="nav">
  429. <a href="#one"></a>
  430. <a href="#two"></a>
  431. <a href="#three"></a>
  432. <a href="#four"></a>
  433. <a href="#five"></a>
  434. </div>
  435.  
  436. <div style="width: 56vw; height: 32vw; overflow-y: hidden;">
  437.  
  438. <a name="one"></a>
  439. <div style="width: 56vw; height: 32vw; overflow: auto;" align="left">
  440. <img src="http://i.picpar.com/hGZd.jpg" style="float:top; width:50vw; height:13vw;">
  441. <br><br>
  442. <span style="float:left;"><b>Name</b></span><span style="float:right;"></span><br>
  443. <span style="float:left;"><b>Alias(es)</b></span><span style="float:right;"><a title="TBA">hover</a></span><br>
  444. <span style="float:left;"><b>Hero Name</b></span><span style="float:right;"></span><br>
  445. <span style="float:left;"><b>Gender</b></span><span style="float:right;"></span><br>
  446. <span style="float:left;"><b>Age</b></span><span style="float:right;"></span><br>
  447. <span style="float:left;"><b>Race</b></span><span style="float:right;"></span><br>
  448. <span style="float:left;"><b>Voice</b></span><span style="float:right;"><a href="https://www.youtube.com/watch?v=UQdHqHGc0aE" target="_blank">Click~</a></span><br>
  449. <span style="float:left;"><b>Class</b></span><span style="float:right;"></span><br><br>
  450. <span style="float:left;"><b>Height</b></span><span style="float:right;"></span><br>
  451. <span style="float:left;"><b>Weight</b></span><span style="float:right;"></span><br>
  452. <span style="float:left;"><b>Eyes</b></span><span style="float:right;"></span><br>
  453. <span style="float:left;"><b>Hair</b></span><span style="float:right;"></span><br>
  454. <span style="float:left;"><b>Build</b></span><span style="float:right;"></span><br><br>
  455. <span style="float:left;"><b>Orientation</b></span><span style="float:right;"></span><br>
  456. <span style="float:left;"><b>Relationship</b></span><span style="float:right;"></span><br>
  457. <span style="float:left;"><b>Affiliation</b></span><span style="float:right;"></span><br>
  458. <br><br><br><br><br><br>
  459. </div>
  460.  
  461.  
  462. <a name="two"></a>
  463. <div style="width: 56vw; height: 32vw; overflow: auto; padding: 5px;" align="left">
  464. <img src="http://i.picpar.com/sGZd.jpg" style="float:left; width:13vw; height:32vw; border: 1px solid #fff;">
  465. <br><br>
  466. <h1>Combat</h1>
  467. <span style="float:left;"><b>Cooperation</b></span><span style="float:right;">●●○○○</span><br><br>
  468. <span style="float:left;"><b>Power</b></span><span style="float:right;">●●●●○</span><br><br>
  469. <span style="float:left;"><b>Speed</b></span><span style="float:right;">●●●●○</span><br><br>
  470. <span style="float:left;"><b>Intelligence</b></span><span style="float:right;">●●●○○</span><br><br>
  471. <span style="float:left;"><b>Technique</b></span><span style="float:right;">●●●●○</span><br><br>
  472.  
  473. <h2>Quirk</h2>
  474. <b>Quirk Name:</b> Electromagnetic Information Processing (EDP)<br><br>
  475. <b>Quirk Type:</b> Emitter<br><br>
  476. <b>Quirk Description:</b>
  477. <br>User is capable of processing all information on technology through a touch, the older the machine is makes it easier to "hack" into, however, it is not impossible for the User to gather information from newer tech - just that it simply takes longer. Extended use of this Quirk can cause the nervous system to short circuit, nerve death is entirely possible without proper control and training. Any tech that is connected to the one the user touches (even indirectly such as through Wifi) is subject to the User's Quirk as well, the range only lasting around five yards at the current time. Awakening will allow the User to gain another massive boost of power, and city-wide control isn't improbable once this occurs.
  478. <br><br><br>
  479. <b>Strengths:</b>
  480. <br><br>
  481.  
  482. <b>Weaknesses:</b>
  483. <br><br>
  484.  
  485. <b>Drawbacks:</b>
  486. <br>
  487.  
  488. <h3>Equipment</h3>
  489.  
  490. <br><br><br><br><br><br>
  491. </div>
  492.  
  493. <a name="three"></a>
  494. <div style="width: 56vw; height: 32vw; overflow: auto;" align="center">
  495. <h1>History</h1>
  496. <b>TBA</b>
  497. <br><br>
  498. <img src="http://i.picpar.com/xGZd.jpg" style="width: 50vw; height: 13vw; bottom: 0vw; left: 0vw; float: bottom; border: 1px solid #fff;"><br><br>
  499. </div>
  500.  
  501. <a name="four"></a>
  502. <div style="width: 56vw; height: 32vw; overflow: auto;" align="center">
  503. <img src="http://i.picpar.com/3GZd.jpg" style="width: 14vw; height: 32vw; float: right; border: 1px solid #fff;"><br><br>
  504.  
  505. <h1>Connections</h1>
  506. <a target="_blank" href="PROFILE LINK HERE"><img src="IMAGE LINK HERE" height="75" width="75" align="left" border="3"></a>
  507. <center><b>- Name -</b><br> <i>foe/friend</i><br> small note.</center><br><br><br><br>
  508. <a target="_blank" href="PROFILE LINK HERE"><img src="IMAGE LINK HERE" height="75" width="75" align="left" border="3"></a>
  509. <center><b>- Name -</b><br> <i>foe/friend</i><br> small note.</center><br><br><br><br>
  510. <a target="_blank" href="PROFILE LINK HERE"><img src="IMAGE LINK HERE" height="75" width="75" align="left" border="3"></a>
  511. <center><b>- Name -</b><br> <i>foe/friend</i><br> small note.</center><br><br><br><br>
  512. <a target="_blank" href="PROFILE LINK HERE"><img src="IMAGE LINK HERE" height="75" width="75" align="left" border="3"></a>
  513. <center><b>- Name -</b><br> <i>foe/friend</i><br> small note.</center>
  514. <br><br><br><br><br><br>
  515. </div>
  516.  
  517. <a name="five"></a>
  518. <div style="width: 56vw; height: 32vw; overflow: auto;" align="center">
  519. <img src="http://i.picpar.com/1GZd.jpg" style="width: 50vw; height: 13vw; top: 0vw; left: 0vw; float: top; border: 1px solid #fff;"><br><br>
  520.  
  521. <h1>Out of Character</h1>
  522. <b>00</b>. Code made by <a href="/profile.php?user=RageQxeen" target="_blank">RageQxeen</a>, do not steal.<br><br>
  523. <b>01</b>. OOC.<br><br>
  524. <b>02</b>. OOC.<br><br>
  525. <b>03</b>. OOC.<br><br>
  526. <b>04</b>. OOC.<br><br>
  527. <b>05</b>. OOC.<br><br>
  528.  
  529. <br><br><br><br><br><br>
  530. </div>
  531. </div>
  532. </form>
  533. </div>
  534. </body>
  535. </html>
Advertisement
Add Comment
Please, Sign In to add comment