Advertisement
hallowimg

naomi

Dec 27th, 2020
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.18 KB | None | 0 0
  1. function tooltip() {
  2. var title = $(this).attr("title");
  3. $(this).removeAttr("title");
  4.  
  5. this.TooltipMessage = $("<div/>", {class: "tooltipMessage", style: "display: none;"});
  6. this.TooltipMessage.html("<span>" + title + "</span>");
  7. $("body").append(this.TooltipMessage);
  8.  
  9.  
  10. if ($(this).hasClass("tooltipLeft")) {
  11. this.TooltipMessage.addClass("left");
  12. }
  13.  
  14. $(this).hover(tooltipFadeIn, tooltipFadeOut);
  15. $(this).mousemove(tooltipMousemove);
  16. }
  17.  
  18. function tooltipFadeIn() {
  19. this.TooltipMessage.stop(true, false).fadeIn();
  20. }
  21.  
  22. function tooltipFadeOut() {
  23. this.TooltipMessage.stop(true, false).fadeOut();
  24. }
  25.  
  26. function tooltipMousemove(e) {
  27. var offset = {
  28. left: e.pageX,
  29. top: e.pageY + 5
  30. };
  31.  
  32. if (this.TooltipMessage.hasClass("left")) {
  33. offset.left -= this.TooltipMessage.width() + 10;
  34. } else {
  35. offset.left -= 100;
  36.  
  37. }
  38. this.TooltipMessage.offset(offset);
  39. }
  40.  
  41. $(function (e) {
  42. $(".tooltip").each(tooltip);
  43. });
  44.  
  45. window.onload = function() {
  46. document.addEventListener("contextmenu", function(e){
  47. e.preventDefault();
  48. }, false);
  49. document.addEventListener("keydown", function(e) {
  50. //document.onkeydown = function(e) {
  51. // "I" key
  52. if (e.ctrlKey && e.shiftKey && e.keyCode == 73) {
  53. disabledEvent(e);
  54. }
  55. // "J" key
  56. if (e.ctrlKey && e.shiftKey && e.keyCode == 74) {
  57. disabledEvent(e);
  58. }
  59. // "S" key + macOS
  60. if (e.keyCode == 83 && (navigator.platform.match("Mac") ? e.metaKey : e.ctrlKey)) {
  61. disabledEvent(e);
  62. }
  63. // "U" key
  64. if (e.ctrlKey && e.keyCode == 85) {
  65. disabledEvent(e);
  66. }
  67. // "F12" key
  68. if (event.keyCode == 123) {
  69. disabledEvent(e);
  70. }
  71. }, false);
  72. function disabledEvent(e){
  73. if (e.stopPropagation){
  74. e.stopPropagation();
  75. } else if (window.event){
  76. window.event.cancelBubble = true;
  77. }
  78. e.preventDefault();
  79. return false;
  80. }};
  81.  
  82. $("img").mousedown(function(){
  83. return false;
  84. });
  85.  
  86.  
  87.  
  88.  
  89. ----------------------------------------------------------------------------------------------------------------
  90.  
  91.  
  92. <style>
  93. @import url('https://fonts.googleapis.com/css?family=Cookie|Pacifico');
  94. @import url('https://fonts.googleapis.com/css?family=Mukta|Overpass|Quicksand|Ubuntu');
  95. @import url('https://fonts.googleapis.com/css?family=Didact+Gothic|Gamja+Flower|Jua|Muli|Tenali+Ramakrishna');
  96.  
  97. body{
  98. background-image:url('https://www.transparenttextures.com/patterns/noisy-grid.png');
  99. background-color: #FC94C6;
  100. background-repeat:repeat;
  101. }
  102.  
  103. ::-webkit-scrollbar {display: none}
  104.  
  105. h1{
  106. color:#0028BF;
  107. font-family: 'Pacifico', sans-serif;
  108. }
  109.  
  110. hr {
  111. border:0;
  112. margin-bottom:5px;
  113. width:90%;
  114. height:1px;
  115. -moz-box-sizing:border-box;
  116. box-sizing:border-box;
  117. background-color:#000;
  118. }
  119. a{
  120. color:#FFF
  121. filter: drop-shadow(.1vh .1vh .1vh #FF80D4);
  122. text-decoration: none;
  123.  
  124. }
  125.  
  126. b{
  127. color:#FFF;
  128. filter: drop-shadow(.1vh .1vh .1vh #FF80D4);
  129. }
  130.  
  131. .hlw img {
  132. top: 20vh;
  133. left: 10vh;
  134. position: absolute;
  135. height: 80vh;
  136. width:57vh;
  137. overflow:auto;
  138. filter: drop-shadow(.5vh .5vh .5vh #FF99CB);
  139. z-index: 99;
  140. }
  141.  
  142. .warn img {
  143. top: 40vh;
  144. left: 160vh;
  145. position: absolute;
  146. height: 12vh;
  147. width:23vh;
  148. overflow:auto;
  149. border-style: solid;
  150. border-color:#FFF;
  151. }
  152.  
  153. .aaa img {
  154. top: 82vh;
  155. left: 160vh;
  156. position: absolute;
  157. height: 12vh;
  158. width:23vh;
  159. overflow:auto;
  160. border-style: solid;
  161. border-color:#FFF;
  162. z-index:99;
  163. }
  164.  
  165. .bbb img {
  166. top: 60vh;
  167. left: 160vh;
  168. position: absolute;
  169. height: 12vh;
  170. width:23vh;
  171. overflow:auto;
  172. border-style: solid;
  173. border-color:#FFF;
  174. z-index:99;
  175. }
  176.  
  177. .box {
  178. position:absolute;
  179. background-color:#FFC4E1;
  180. height:55vh;
  181. width:130vh;
  182. left:35vh;
  183. top: 40vh;
  184. border-style:solid
  185. border-color: #EB9FB1;
  186. opacity:0.5;
  187. }
  188.  
  189. .stats {
  190. position:absolute;
  191. padding: 1px;
  192. font-family: 'Text';
  193. font-size:20px;
  194. color:#FE80BD;
  195. text-align:justify;
  196. line-height:42px;
  197. height:50vh;
  198. width:38vh;
  199. left:65vh;
  200. top: 42vh;
  201. overflow: auto;
  202. filter: drop-shadow(.1vh .1vh .1vh #FFF);
  203. }
  204.  
  205. .box2 {
  206. position:absolute;
  207. background-color:#FFC4E1;
  208. height:55vh;
  209. width:40vh;
  210. left:120vh;
  211. top: 25vh;
  212. border-style:solid
  213. border-color: #EB9FB1;
  214. opacity:0.5;
  215. }
  216.  
  217. .words {
  218. position:absolute;
  219. padding: 1px;
  220. font-family: 'Text';
  221. font-size:20px;
  222. color:#FE80BD;
  223. text-align:justify;
  224. line-height:42px;
  225. height:50vh;
  226. width:38vh;
  227. left:111vh;
  228. top: 42vh;
  229. overflow: auto;
  230. filter: drop-shadow(.1vh .1vh .1vh #FFF);
  231. }
  232.  
  233. .box3 {
  234. position:absolute;
  235. background-color:#FFC4E1;
  236. height:55vh;
  237. width:40vh;
  238. left:165vh;
  239. top: 40vh;
  240. border-style:solid
  241. border-color: #EB9FB1;
  242. opacity:0.5;
  243. }
  244.  
  245. .fwends {
  246. position:absolute;
  247. padding: 1px;
  248. font-family: 'Text';
  249. font-size:20px;
  250. color:#FF96B8;
  251. text-align:justify;
  252. line-height:42px;
  253. height:50vh;
  254. width:38vh;
  255. left:166vh;
  256. top: 42vh;
  257. overflow: auto;
  258. filter: drop-shadow(.1vh .1vh .1vh #FFF);
  259. }
  260.  
  261. .title{
  262. color:#FFFFFF;
  263. font-family: 'Title';
  264. font-size:30vh;
  265. top:15vh;
  266. width:50vh;
  267. left:77vh;
  268. position: absolute;
  269. z-index:5;
  270. letter-spacing:.5px;
  271. filter: drop-shadow(.1vh .1vh .1vh #FFF);
  272. }
  273.  
  274. .title2{
  275. color:#FF7ECC;
  276. font-family: 'Title';
  277. font-size:30vh;
  278. top:15vh;
  279. height:20vh;
  280. width:50vh;
  281. left:167vh;
  282. position: absolute;
  283. z-index:5;
  284. letter-spacing:.5px;
  285. filter: drop-shadow(.1vh .1vh .1vh #FFF);
  286. }
  287.  
  288. .credit {
  289. overflow:hidden;
  290. position:fixed;
  291. text-align:justify;
  292. bottom:2vh;
  293. right:2vh;
  294. height:5vh;
  295. width:5vh;
  296. padding:0vh;
  297. opacity: .8;
  298. background-image: url('https://i.imgur.com/Ldl49Wz.png');
  299. background-position:top center;
  300. background-attachment: absolute;
  301. -webkit-background-size: cover;
  302. -moz-background-size: cover;
  303. -o-background-size: cover;
  304. background-size: cover;}
  305.  
  306. div.tooltipMessage {
  307. z-index: 600;
  308. position: absolute;
  309. width: 220px;
  310. font-family: verdana;
  311. font-variant: small-caps;
  312. font-size: 10px;
  313. text-align: justify;
  314. }
  315.  
  316. div.tooltipMessage > span {
  317. display: inline-block;
  318. background: #FF7ECC;
  319. padding: 4px 5px;
  320. color: #FFF;
  321. border: 1px solid #FFF;
  322. border-radius: 5px;
  323. }
  324. div.tooltipMessage.left > span {
  325. float: right;
  326. }
  327.  
  328.  
  329. @font-face {
  330. font-family: "Title";
  331. src: url('https://dl.dropboxusercontent.com/s/fjjqzhvpr9f1yri/Coaster%20Quake%20-%20Personal%20Use.otf?dl=0');
  332. format("truetype");
  333. }
  334.  
  335. @font-face {
  336. font-family: "Text";
  337. src: url('https://dl.dropboxusercontent.com/s/1829lpmhv6kpafu/coffee%2Bteademo-Regular.ttf?dl=0');
  338. format("truetype");
  339. }
  340. </style>
  341.  
  342.  
  343. <div class="title">Naomi</div>
  344.  
  345. <div class="hlw">
  346. <img src="https://i.imgur.com/fzm22vR.png">
  347. </div>
  348.  
  349. <div class="warn">
  350. <img src="https://data.whicdn.com/images/270507228/original.gif">
  351. </div>
  352.  
  353. <div class="aaa">
  354. <img src="https://i.pinimg.com/originals/09/5d/71/095d71e519211adacc10257fdb49efda.gif">
  355. </div>
  356.  
  357. <div class="bbb">
  358. <img src="https://66.media.tumblr.com/6d0edb4b8b66cd42e1f468fbf4142d50/tumblr_p34co6bWrA1sgowuyo1_500.gifv">
  359. </div>
  360.  
  361. <div class="box"></div>
  362. <div class="stats">
  363. <font style=float:left><b>NAME:</b></font> <font style=float:right>Naomi Price</font><br>
  364. <font style=float:left><b>NICKNAMES:</b></font> <font style=float:right>Nao, Princess</font><br>
  365. <font style=float:left><b>AGE:</b></font> <font style=float:right>Twenty years old.</font><br>
  366. <font style=float:left><b>ATTITUDE:</b></font> <font style=float:right>Sweet but Bratty</font><br>
  367. <font style=float:left><b>PREFERENCE:</b></font> <font style=float:right>Men</font><br>
  368. <font style=float:left><b>STATUS:</b></font> <font style=float:right>Single</font><br>
  369.  
  370. <center><a class="tooltip" href="https://roleplay.chat/profile.php?user=fortunate" title="Friend here!"><b>★</b></a></center>
  371. </div>
  372.  
  373. <div class="words">
  374. Naomi comes from an extremely wealthy family, and was spoiled as a child. Despite the fact that she's grown out of her tantrum-throwing-tendencies, she can still be bratty at times. Nao is used to getting what she wants when she wants it. Her impatience has gotten her into many dangerous situations- though, that could also be due to her being part of a crime family, even if she doesn't know it.
  375. </div>
  376.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement