ndfjay

Diov New

Dec 3rd, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 7.84 KB | None | 0 0
  1. <script src="https://code.jquery.com/jquery-3.2.1.js"></script>
  2. <script>
  3.     // YOUR FRIENDS GO HERE TO SET UP THE AVATAR PICTURES
  4.     // NAMES MUST BE IN "" AND SEPERATED BY , COMMAS
  5.     // E.G var Friends = ['Rieno', 'Diov', 'Anry']
  6.  
  7. var Friends = ['Rieno'];
  8.  
  9.     // YOUR SUPPORTS GO HERE TO SET UP THE AVATAR PICTURES
  10.     // NAMES MUST BE IN "" AND SEPERATED BY , COMMAS
  11.     // E.G var Supports = ['Rieno', 'Diov', 'Anry']
  12.  
  13. var Supports = ['Rieno'];
  14. </script>
  15.  
  16.  
  17.  
  18. <!-- THIS IS THE HOME PANEL-->
  19.  
  20. <div style="display: none" id="home">
  21. <center>
  22.     <h1>This is demo content <br/> for the home page</h1>
  23. </center>
  24. </div>
  25.  
  26. <!-- THIS IS THE COMISSIONS PANEL-->
  27.  
  28. <div style="display: none" id="comissions">
  29.     <center>
  30.         <h1>This is demo content <br/> for the comissions page</h1>
  31.     </center>
  32. </div>
  33.  
  34. <!-- THIS IS THE FRIENDS PANEL-->
  35.  
  36. <div style="display: none" id="friends">
  37.     <center>
  38.         <h1>This is demo content <br/> for the friends page</h1>
  39.     </center>
  40.  
  41.     <div style="position: absolute; bottom: 15px; left: 15px">
  42.         <script src="https://pastebin.com/raw/bwYtGRjJ">    </script>
  43.         <script>
  44.             genFriends({
  45.                 friends: Friends,
  46.                 scale: 0.60,
  47.                 radius: "15px",
  48.                 opacity: ".7",
  49.                 font: "Pacifico"
  50.             });
  51.         </script>
  52.     </div>
  53.    
  54. </div>
  55.  
  56. <!-- THIS IS THE SUPPORT PANEL-->
  57.  
  58. <div style="display: none" id="support">
  59.     <center>
  60.         <h1>This is demo content <br/> for the support page</h1>
  61.     </center>
  62.  
  63.     <div style="position: absolute; bottom: 15px; left: 15px">
  64.         <script src="https://pastebin.com/raw/AJCvVRTL">    </script>
  65.         <script>
  66.             genSupport({
  67.                 supports: Supports,
  68.                 scale: 0.60,
  69.                 radius: "15px",
  70.                 opacity: ".7",
  71.                 font: "Pacifico"
  72.             });
  73.         </script>
  74.     </div>
  75. </div>
  76.  
  77. <!-- THIS IS THE DONATE PANEL-->
  78.  
  79. <div style="display: none" id="donate">
  80.     <center>
  81.         <h1>This is demo content <br/> for the donate page</h1>
  82.     </center>
  83. </div>
  84.  
  85.  
  86. <!-- IGNORE EVERYTHING UNDER HERE -->
  87. <!-- IGNORE EVERYTHING UNDER HERE -->
  88. <!-- IGNORE EVERYTHING UNDER HERE -->
  89. <!-- IGNORE EVERYTHING UNDER HERE -->
  90. <!-- IGNORE EVERYTHING UNDER HERE -->
  91. <!-- IGNORE EVERYTHING UNDER HERE -->
  92. <!-- IGNORE EVERYTHING UNDER HERE -->
  93. <!-- IGNORE EVERYTHING UNDER HERE -->
  94. <!-- IGNORE EVERYTHING UNDER HERE -->
  95. <!-- IGNORE EVERYTHING UNDER HERE -->
  96. <!-- IGNORE EVERYTHING UNDER HERE -->
  97. <!-- IGNORE EVERYTHING UNDER HERE -->
  98. <!-- IGNORE EVERYTHING UNDER HERE -->
  99. <!-- IGNORE EVERYTHING UNDER HERE -->
  100.  
  101. <div id="side_bar">
  102.     <div id="username">Diov</div>
  103.     <div id="userpic"></div>
  104.     <div id="bottom_side"></div>
  105.     <div id="side_bar_trees"></div>
  106.     <div id="links">
  107.         <div class="link" onclick="change_content('home')">Home</div>
  108.         <div class="link" onclick="change_content('comissions')">Comissions</div>
  109.         <div class="link" onclick="change_content('friends')">Friends</div>
  110.         <div class="link" onclick="change_content('support')">Support</div>
  111.         <div class="link" onclick="openInNewTab('https://www.imvu.com/shop/web_search.php?manufacturers_id=110043699&r=acw')">Shop</div>
  112.         <div class="link" onclick="change_content('donate')">Donate</div>
  113.         <div class="link" onclick="openInNewTab('https://www.imvu.com/catalog/web_add_contact.php?contact=Diov')">Add</div>
  114.         <div class="link" onclick="IMVU.messagePopupShow({force_recipient_id:110043699}); return false;">Message</div>
  115.     </div>
  116. </div>
  117. <div id="content_container" style="z-index: -1; width: calc(100vw - 250px); min-width: 600px; min-height: 600px; position: fixed; left: 250px; top: 0px; height: 100vh;">
  118.     <div id="footer_s">Homepage designed and coded by <a style="color: #FFF; text-decoration: none" href="https://avatars.imvu.com/rieno">Rieno</a></div>
  119.     <div id="content">
  120.             <div id="content_area"> </div>
  121.     </div>
  122. </div>
  123.  
  124. <style>
  125. @import url('https://fonts.googleapis.com/css?family=Pacifico');
  126. #footer_s{
  127.     position: absolute;
  128.     right: 0px;
  129.     bottom: 20px;
  130.     text-align: center;
  131.     width: calc(100vw - 250px);
  132.     height: 20px;
  133.     color: #363636;
  134.     font-family: Pacifico;
  135. }
  136. #content{
  137.     width: calc(100% - 100px);
  138.     height: calc( 100% - 100px);
  139.     border-radius: 15px;
  140.     background: rgba(255,255,255,.6);
  141.     position: absolute;
  142.     right: 50px;
  143.     bottom: 50px;
  144.     font-family: Pacifico !important;
  145.     color: rgb(37, 37, 37) !important;
  146. }
  147. #content_area{
  148.     width: 100%;
  149.     height: 100% ;
  150.     border-radius: 25px;
  151.     position: absolute;
  152.     right: 0px;
  153.     bottom: 0px;
  154.     font-family: Pacifico !important;
  155.     color: rgb(37, 37, 37) !important;
  156. }
  157. #content_container{
  158.     background-attachment: fixed;
  159.     background-image: url('https://i.imgur.com/9NrfZsw.jpg');
  160. }
  161. #links{
  162.     width: 150px;
  163.     min-height: 50px;
  164.     position: absolute;
  165.     top: 450px;
  166.     left: calc(50% - 75px)
  167. }
  168. .link{
  169.     width: 150px;
  170.     text-align: center;
  171.     font-family: Pacifico;
  172.     color: #FFF;
  173.     cursor: pointer;
  174. }
  175. .link:hover{
  176.     color:#ffbcfe;
  177. }
  178. #username{
  179.     color: #ffbcfe;
  180.     font-family: Pacifico;
  181.     font-size: 40px;
  182.     width: 250px;
  183.     height: 100px;
  184.     top: 10px;
  185.     left: 0px;
  186.     position: absolute;
  187.     text-align: center;
  188.     z-index: 1
  189. }
  190. #userpic{
  191.     background-image: url('https://www.imvu.com/catalog/web_av_pic.php?av=Diov');
  192.     width: 160px;
  193.     height: 220px;
  194.     top: 70px;
  195.     left: calc(50% - 80px);
  196.     border-radius: 100%;
  197.     position: absolute;
  198.     box-shadow: 0px 0px 5px rgba(0,0,0,1);
  199. }
  200. #side_bar{
  201.     width: 250px;
  202.     height: 100vh;
  203.     position: fixed;
  204.     z-index: 99;
  205.     left: 0px;
  206.     top: 0px;
  207.     background: #FFF;
  208.     border-style: none solid none none;
  209.     border-width: 2px;
  210.     border-color: #000;
  211. }
  212. #side_bar_trees{
  213.     background: url('https://i.imgur.com/u7RZONN.png');
  214.     position: absolute;
  215.     width: 250px;
  216.     height: 400px;
  217.     top: 250px;
  218.     left: 0px;
  219. }
  220. #bottom_side{
  221.     background: #9600ff;
  222.     width: 250px;
  223.     position: absolute;
  224.     bottom: 0px;
  225.     left: 0px;
  226.     height: calc(100vh - 500px);
  227. }
  228. .hiddenc{
  229.     display: none;
  230. }
  231.  
  232.   #prods{
  233.     position: absolute;
  234.     bottom: 20px;
  235.     left: 10px;
  236.   }
  237.   #badges_panel{
  238.       width: 250px !important;
  239.       position: absolute;
  240.       top: 30px !important;
  241.       left: 300px !important;
  242.       opacity: .3 !important;
  243. z-index: 999 !important;
  244.   }
  245.   #badges_panel:hover{
  246.       opacity: 1 !important;
  247.   }
  248. </style>
  249.  
  250. <!-- Codes to hide all elements -->
  251. <style type="text/css">
  252.     #aboutme_panel, #contact_panel, #dev_panel, #wishlist_panel, #visitors_panel,
  253.     #messages_panel, #tagcloud_panel, #stickers_panel, #collect_panel,
  254.     #room_panel, #rankings_panel, #cool_panel, #gallery_panel, #friends_panel,
  255.     #streetteam_panel, #blog_panel, #video_panel_header, #music_panel, #rss_panel, #outfits_panel {
  256.        display: none !important;
  257.     }
  258.     #rightColumn {
  259.        display:none !important;
  260.     }
  261.  </style>
  262.  <style type="text/css">
  263.  #url_panel_colRow, .imvucodes_net { display:none !important; }
  264.  </style>
  265.  <style type="text/css">
  266.  .paneltitle, .panelmenu, .imvucodes_net { display:none !important; }
  267.  </style>
  268.  
  269.  
  270. <script>
  271. document.getElementById("content_area").innerHTML = document.getElementById("home").innerHTML;
  272. function change_content(id){
  273.     let content = document.getElementById('content_area');
  274.     $("#content_area").fadeOut('slow', ()=>{
  275.         try{
  276.             content.innerHTML = document.getElementById(id).innerHTML;
  277.         }
  278.         catch{}
  279.         $('#content_area').fadeIn('slow');
  280.        
  281.        
  282.     })
  283.    
  284. }
  285.  
  286. function openInNewTab(url) {
  287.   var win = window.open(url, '_blank');
  288.   win.focus();
  289. }
  290. </script>
Add Comment
Please, Sign In to add comment