RageQxeen

Eiji

Feb 22nd, 2020
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 13.75 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. <style type="text/css">
  48.  
  49. @import url('https://fonts.googleapis.com/css?family=Rouge+Script|Cinzel+Decorative|Cormorant+Garamond&display=swap');
  50.  
  51. html, body {
  52. background: #471C01;
  53. background-image:url("http://i.picpar.com/iXKd.jpg");
  54. background-size:110%;
  55. background-repeat:no-repeat;
  56. background-position:center bottom;
  57. }
  58.  
  59. ::-webkit-scrollbar-button:vertical:{
  60. background-color: #transparent;}
  61.  
  62. ::-webkit-scrollbar-thumb:vertical {
  63. background-color:#transparent;
  64. height:150px;}
  65.  
  66. ::-webkit-scrollbar-thumb:horizontal {
  67. background-color:#transparent;
  68. height:60px;}
  69.  
  70.  
  71. ::-webkit-scrollbar {
  72. height:60px;
  73. width:5px;
  74. background-color:#transparent;}
  75.  
  76.  
  77. #tree {
  78. width: 47.5vw;
  79. margin: 0px;
  80. border: none;
  81. height: 47.5vw;
  82. background-color:transparent;
  83. position: absolute;
  84. right: 25%;
  85. top: 0%;
  86. background-image:url("https://www.pngkit.com/png/full/478-4788004_gospel-yggdrasil-tattoo.png");
  87. background-repeat:no-repeat;
  88. background-position: top;
  89. background-size: 100%;
  90. -webkit-animation: fade-in 3s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
  91. animation: fade-in 3s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
  92. }
  93.  
  94.  
  95. /**
  96. * ----------------------------------------
  97. * animation fade-in
  98. * ----------------------------------------
  99. */
  100. @-webkit-keyframes fade-in {
  101. 0% {
  102. opacity: 0;
  103. }
  104. 100% {
  105. opacity: 1;
  106. }
  107. }
  108. @keyframes fade-in {
  109. 0% {
  110. opacity: 0;
  111. }
  112. 100% {
  113. opacity: 1;
  114. }
  115. }
  116.  
  117.  
  118. #image {
  119. width: 100%;
  120. margin: 0px;
  121. border: none;
  122. height: 41.6vw;
  123. background-color:transparent;
  124. position: absolute;
  125. right: 0%;
  126. bottom: 0%;
  127. background-image:url("");
  128. background-repeat:no-repeat;
  129. background-position: bottom;
  130. background-size: 100%;
  131. z-index: 0;
  132. }
  133.  
  134. .box1{
  135. background-color: #104410;
  136. position: absolute;
  137. width: 30vw;
  138. height: 26.7vw;
  139. margin: auto;
  140. padding: 10px;
  141. font-family: 'Buda';
  142. color: #ffffff;
  143. left: 3%;
  144. top: 20%;
  145. box-shadow: -3px -3px 10px 10px #fff100;
  146. -webkit-animation: slit-in-diagonal-2 1s ease-out both;
  147. animation: slit-in-diagonal-2 1s ease-out both;
  148. }
  149.  
  150. @-webkit-keyframes slit-in-diagonal-2 {
  151. 0% {
  152. -webkit-transform: translateZ(-800px) rotate3d(-1, 1, 0, -90deg);
  153. transform: translateZ(-800px) rotate3d(-1, 1, 0, -90deg);
  154. -webkit-animation-timing-function: ease-in;
  155. animation-timing-function: ease-in;
  156. opacity: 0;
  157. }
  158. 54% {
  159. -webkit-transform: translateZ(-160px) rotate3d(-1, 1, 0, -87deg);
  160. transform: translateZ(-160px) rotate3d(-1, 1, 0, -87deg);
  161. -webkit-animation-timing-function: ease-in-out;
  162. animation-timing-function: ease-in-out;
  163. opacity: 1;
  164. }
  165. 100% {
  166. -webkit-transform: translateZ(0) rotate3d(-1, 1, 0, 0);
  167. transform: translateZ(0) rotate3d(-1, 1, 0, 0);
  168. -webkit-animation-timing-function: ease-out;
  169. animation-timing-function: ease-out;
  170. }
  171. }
  172. @keyframes slit-in-diagonal-2 {
  173. 0% {
  174. -webkit-transform: translateZ(-800px) rotate3d(-1, 1, 0, -90deg);
  175. transform: translateZ(-800px) rotate3d(-1, 1, 0, -90deg);
  176. -webkit-animation-timing-function: ease-in;
  177. animation-timing-function: ease-in;
  178. opacity: 0;
  179. }
  180. 54% {
  181. -webkit-transform: translateZ(-160px) rotate3d(-1, 1, 0, -87deg);
  182. transform: translateZ(-160px) rotate3d(-1, 1, 0, -87deg);
  183. -webkit-animation-timing-function: ease-in-out;
  184. animation-timing-function: ease-in-out;
  185. opacity: 1;
  186. }
  187. 100% {
  188. -webkit-transform: translateZ(0) rotate3d(-1, 1, 0, 0);
  189. transform: translateZ(0) rotate3d(-1, 1, 0, 0);
  190. -webkit-animation-timing-function: ease-out;
  191. animation-timing-function: ease-out;
  192. }
  193. }
  194.  
  195. .box2{
  196. background-color: #104410;
  197. position: absolute;
  198. width: 30vw;
  199. height: 26.7vw;
  200. margin: auto;
  201. padding: 10px;
  202. font-family: 'Buda';
  203. color: #ffffff;
  204. right: 3%;
  205. top: 20%;
  206. box-shadow: 3px -3px 10px 10px #fff100;
  207. -webkit-animation: slit-in-diagonal-1 1s ease-out both;
  208. animation: slit-in-diagonal-1 1s ease-out both;
  209. }
  210.  
  211. @-webkit-keyframes slit-in-diagonal-1 {
  212. 0% {
  213. -webkit-transform: translateZ(-800px) rotate3d(1, 1, 0, 90deg);
  214. transform: translateZ(-800px) rotate3d(1, 1, 0, 90deg);
  215. -webkit-animation-timing-function: ease-in;
  216. animation-timing-function: ease-in;
  217. opacity: 0;
  218. }
  219. 54% {
  220. -webkit-transform: translateZ(-160px) rotate3d(1, 1, 0, 87deg);
  221. transform: translateZ(-160px) rotate3d(1, 1, 0, 87deg);
  222. -webkit-animation-timing-function: ease-in-out;
  223. animation-timing-function: ease-in-out;
  224. opacity: 1;
  225. }
  226. 100% {
  227. -webkit-transform: translateZ(0) rotate3d(1, 1, 0, 0);
  228. transform: translateZ(0) rotate3d(1, 1, 0, 0);
  229. -webkit-animation-timing-function: ease-out;
  230. animation-timing-function: ease-out;
  231. }
  232. }
  233. @keyframes slit-in-diagonal-1 {
  234. 0% {
  235. -webkit-transform: translateZ(-800px) rotate3d(1, 1, 0, 90deg);
  236. transform: translateZ(-800px) rotate3d(1, 1, 0, 90deg);
  237. -webkit-animation-timing-function: ease-in;
  238. animation-timing-function: ease-in;
  239. opacity: 0;
  240. }
  241. 54% {
  242. -webkit-transform: translateZ(-160px) rotate3d(1, 1, 0, 87deg);
  243. transform: translateZ(-160px) rotate3d(1, 1, 0, 87deg);
  244. -webkit-animation-timing-function: ease-in-out;
  245. animation-timing-function: ease-in-out;
  246. opacity: 1;
  247. }
  248. 100% {
  249. -webkit-transform: translateZ(0) rotate3d(1, 1, 0, 0);
  250. transform: translateZ(0) rotate3d(1, 1, 0, 0);
  251. -webkit-animation-timing-function: ease-out;
  252. animation-timing-function: ease-out;
  253. }
  254. }
  255.  
  256. #content {
  257. background-color:#eee8aa;
  258. width: 28.5vw;
  259. height: 23.7vw;
  260. margin:auto;
  261. position: absolute;
  262. padding: 5px;
  263. font-family: 'Cormorant Garamond', cursive;
  264. color: #000;
  265. left: 2.5%;
  266. top: 5%;
  267. z-index:1;
  268. border: #000000 solid 2px;
  269. }
  270.  
  271. #content2 {
  272. background-color:#eee8aa;
  273. width: 28.5vw;
  274. height: 23.7vw;
  275. margin:auto;
  276. position: absolute;
  277. padding: 5px;
  278. font-family: 'Cormorant Garamond', cursive;
  279. color: #000;
  280. left: 2.5%;
  281. top: 5%;
  282. z-index:1;
  283. border: #000000 solid 2px;
  284. }
  285.  
  286. #navi1 {position: absolute;
  287. left: 5%;
  288. top: 5%;}
  289.  
  290. #navi1 a {background-color: #600;
  291. background:url('http://i.picpar.com/kXKd.png')
  292. center center no-repeat;;
  293. background-size: 100%;
  294. display: inline-block;
  295. height: 50px;
  296. width: 50px;
  297. border: 0px solid #000;
  298.  
  299. }
  300.  
  301. #navi2 {position: absolute;
  302. left: 30%;
  303. top: 8%;}
  304.  
  305. #navi2 a {background-color: #600;
  306. background:url('http://i.picpar.com/lXKd.png')
  307. center center no-repeat;;
  308. background-size: 100%;
  309. display: inline-block;
  310. height: 90px;
  311. width: 90px;
  312. border: 0px solid #000;}
  313.  
  314. #navi3 {position: absolute;
  315. right: 4%;
  316. top: 10%;}
  317.  
  318. #navi3 a {background-color: #600;
  319. background:url('http://i.picpar.com/mXKd.png')
  320. center center no-repeat;;
  321. background-size: 100%;
  322. display: inline-block;
  323. height: 80px;
  324. width: 80px;
  325. border: 0px solid #000;}
  326.  
  327. #navi4 {position: absolute;
  328. right: 30%;
  329. top: 8.5%;}
  330.  
  331. #navi4 a {background-color: #600;
  332. background:url('http://i.picpar.com/nXKd.png')
  333. center center no-repeat;;
  334. background-size: 100%;
  335. display: inline-block;
  336. height: 70px;
  337. width: 70px;
  338. border: 0px solid #000;}
  339.  
  340.  
  341. .custom {
  342. cursor: url(http://i.picpar.com/oXKd.png), auto;
  343. }
  344.  
  345. #name {
  346. z-index:15;
  347. position: absolute;
  348. left: 42%;
  349. bottom: 5%;
  350. margin: none;
  351. background: #transparent;
  352. width: 25vw;
  353. height: 5vw;
  354. font-family: 'Rouge Script';
  355. font-size: 5vw;
  356. background: url(https://media.giphy.com/media/26BROrSHlmyzzHf3i/giphy-downsized-large.gif) -20px -20px repeat;
  357. -webkit-text-fill-color: transparent;
  358. -webkit-background-clip: text;
  359. display:block;
  360. text-align: left;
  361. letter-spacing: 1px;
  362. -webkit-transition:opacity 2s linear;
  363. z-index: 1;
  364. }
  365.  
  366. #nameunder{
  367. z-index:15;
  368. position: absolute;
  369. left: 42%;
  370. bottom: 5%;
  371. margin: none;
  372. background: #transparent;
  373. width: 25vw;
  374. height: 5vw;
  375. font-family: 'Rouge Script';
  376. font-size: 5vw;
  377. -webkit-text-fill-color: transparent;
  378. text-transform: none;
  379. -webkit-background-clip: text;
  380. display:block;
  381. text-shadow: -1px 0 #104410, 0 1px #104410,1px 0 #fff, 0 -1px #fff;
  382. text-align: left;
  383. letter-spacing: 1px;
  384. -webkit-transition:opacity 2s linear;
  385. z-index: 1;
  386. }
  387.  
  388. #editthis{ position:fixed;height: 27px; width: 30px; bottom: 0%; right: 0%; margin: auto; z-index:99;}
  389.  
  390. #music1{ position:fixed; padding:2px; border-radius: 50%; -webkit-transition: all 0.5s ease-in-out; -moz-transition: all 0.5s ease-in-out; -o-transition: all 0.5s ease-in-out;}
  391.  
  392. #music1:hover #music2{ opacity: 0; margin-top:-20px; z-index:-1;}
  393.  
  394. #music1:hover #music3{ opacity: .5; margin-top:-5px; z-index:99;}
  395.  
  396. #music1:hover #musiclist{ opacity: .5;}
  397.  
  398. #music2{ opacity: .5; background-color:#000000; padding:6px; border-radius: 50%; -webkit-transition: all 0.5s ease-in-out; -moz-transition: all 0.5s ease-in-out; -o-transition: all 0.5s ease-in-out;}
  399.  
  400. #music3{ opacity: 0; position:fixed; background-color:#000000; background-image: url('https://www.pngkey.com/png/full/11-113290_playbutton-video-player-button-png.png'); background-repeat: no-repeat; background-size: 25px; border:1px dotted #b3b3e5; border-radius: 50%; width:25px; height:25px; z-index:99 margin-left:0px; overflow:hidden; -webkit-transition: all 0.5s ease-in-out; -moz-transition: all 0.5s ease-in-out;-o-transition: all 0.5s ease-in-out;}
  401.  
  402.  
  403. i{color: #111;}
  404. b{color: #000;}
  405. a{color: #222; text-decoration: none;}
  406. h1{color: #000; font-family: 'Cinzel Decorative', cursive; border-bottom: 1px solid #000; text-align: right; font-size: 25px;}
  407. h2{color: #000; font-family: 'Cinzel Decorative', cursive; border-bottom: 1px solid #000; text-align: left; font-size: 25px;}
  408. </style>
  409. <div class="custom">
  410.  
  411. <div id="editthis"><div id="music1"><div id="music2">
  412. <img src="http://38.media.tumblr.com/tumblr_m7w2py1dEP1r6o8v2.gif" style="opacity: 0.8;"></div>
  413. <div id="music3"><Div style="margin-top:4px;">
  414. <audio controls style="opacity: 0;"><source src="http://k007.kiwi6.com/hotlink/d2g1wtogtv/Varien_-_Born_of_Blood_Risen_From_Ash.mp3"></audio>
  415. </div></div></div></div>
  416.  
  417. <div id="nameunder">The Origin</div><div id="name">The Origin</div>
  418.  
  419. <div id="tree"></div>
  420.  
  421.  
  422. <div id="navi1"><a href="#one"></a></div>
  423. <div id="navi2"><a href="#two"></a></div>
  424. <div id="navi3"><a href="#three"></a></div>
  425. <div id="navi4"><a href="#four"></a></div>
  426.  
  427.  
  428.  
  429. <div class="box1">
  430. <div id="content">
  431. <div style="width: 28.5vw; height: 23.7vw; overflow-y: hidden;">
  432.  
  433. <a name="one"></a>
  434. <div style="width: 28.5vw; height: 23.7vw; overflow: auto;" align="center">
  435. <span style="float:left;"><b>Name</b></span><span style="float:right;"></span><br>
  436. <span style="float:left;"><b>Alias(es)</b></span><span style="float:right;"></span><br>
  437. <span style="float:left;"><b>Gender</b></span><span style="float:right;"></span><br>
  438. <span style="float:left;"><b>Age</b></span><span style="float:right;"></span><br>
  439. <span style="float:left;"><b>Height</b></span><span style="float:right;"></span><br>
  440. <span style="float:left;"><b>Weight</b></span><span style="float:right;"></span><br>
  441. <span style="float:left;"><b>Orientation</b></span><span style="float:right;"></span><br>
  442. <span style="float:left;"><b>Relationship</b></span><span style="float:right;"></span><br>
  443. <span style="float:left;"><b>Race</b></span><span style="float:right;"></span><br>
  444. <span style="float:left;"><b>Mentality</b></span><span style="float:right;"></span><br>
  445. <span style="float:left;"><b>Eyes</b></span><span style="float:right;"></span><br>
  446. <span style="float:left;"><b>Hair</b></span><span style="float:right;"></span><br>
  447. <span style="float:left;"><b>Build</b></span><span style="float:right;"></span><br>
  448. <span style="float:left;"><b>Affiliation</b></span><span style="float:right;"></span><br>
  449. </div>
  450.  
  451. <a name="two"></a>
  452. <div style="width: 28.5vw; height: 23.7vw; overflow: auto;" align="center">
  453. <h1>POWERS TITLE</h1>
  454. </div>
  455. </div>
  456. </div>
  457. </div>
  458.  
  459. <div class="box2">
  460. <div id="content2">
  461. <div style="width: 28.5vw; height: 23.7vw; overflow-y: hidden;">
  462.  
  463. <a name="four"></a>
  464. <div style="width: 28.5vw; height: 23.7vw; overflow: auto;" align="center">
  465. <h2>HISTORY TITLE</h2>
  466. </div>
  467.  
  468.  
  469.  
  470. <a name="three"></a>
  471. <div style="width: 28.5vw; height: 23.7vw; overflow: auto;" align="center">
  472. <h1>OOC TITLE</h1>
  473.  
  474. <b>00.</b> Code made by <a href="https://alliealgiere.neocities.org">RageQxeen</a> for Eiji, do not steal.<br><br>
  475. <b>01.</b> OOC.<br>
  476. <b>02.</b> OOC.<br>
  477. <b>03.</b> OOC.<br>
  478. <b>04.</b> OOC.<br>
  479. <b>05.</b> OOC.<br>
  480. </div>
  481. </div>
  482. </div>
  483. </div>
  484.  
  485. </div>
  486. </body>
  487. </html>
Advertisement
Add Comment
Please, Sign In to add comment