(Needed) Any one know were i can get these from?

Jozh

New Project Coming Soon!
Oct 8, 2016
122
21
Im Looking to add this to my client but i have no idea were i can find the stuff needed

5nvo68.png

2dt62s4.png


I am also looking for :
2uymz41.png


if you have links to releases on devbest please comment them below!
thank you in advance!
 

NeedForSpreed

Member
May 18, 2014
326
71
that second radio that is SWF related. The first one is basically adding a <div> with code on it. I could write you a simple radio if you'd like to. The third you can accomplish fullscreen with html and Javascript. I could also write that for you if interested. If you'd like me to write all of those stuff for you just pm me on skype, spreed.blood .
 

NeedForSpreed

Member
May 18, 2014
326
71
to all those saying, "don't help on skype help here because everyone that needs this should be able to find it", here you go. Add this to your client.php,
Code:
    <script>
    function toggleFullScreen() {
  if ((document.fullScreenElement && document.fullScreenElement !== null) ||   
   (!document.mozFullScreen && !document.webkitIsFullScreen)) {
    if (document.documentElement.requestFullScreen) { 
      document.documentElement.requestFullScreen(); 
    } else if (document.documentElement.mozRequestFullScreen) { 
      document.documentElement.mozRequestFullScreen(); 
    } else if (document.documentElement.webkitRequestFullScreen) { 
      document.documentElement.webkitRequestFullScreen(Element.ALLOW_KEYBOARD_INPUT); 
    } 
  } else { 
    if (document.cancelFullScreen) { 
      document.cancelFullScreen(); 
    } else if (document.mozCancelFullScreen) { 
      document.mozCancelFullScreen(); 
    } else if (document.webkitCancelFullScreen) { 
      document.webkitCancelFullScreen(); 
    } 
  } 
}
    </script>
    <style>
    #hexrules {
    border-radius: 10px;
    line-height: 32px;
    font-size: 16px;
    text-align: center;
    display: inline-block;
    color: white; width: 120px;
    height: 30px;
    background-color: rgb(51, 127, 46);
    border: 2px solid #7bc976;
    text-decoration: none;
    }
    
    #hexrules:hover {
    border-radius: 10px;
    line-height: 32px;
    font-size: 16px;
    text-align: center;
    display: inline-block;
    color: white; width: 120px;
    height: 30px;
    background-color: #7bc976;
    border: 2px solid #7bc976;
    text-decoration: none;
    }
    
    #fullscreenmode {
    border-radius: 10px;
    line-height: 32px;
    font-size: 16px;
    text-align: center;
    display: inline-block;
    color: white; width:
    120px; height: 30px;
    background-color: rgb(51, 127, 46);
    border: 2px solid #7bc976;
    text-decoration: none;
    }
    
    #fullscreenmode:hover {
    border-radius: 10px;
    line-height: 32px;
    font-size: 16px;
    text-align: center;
    display: inline-block;
    color: white; width:
    120px; height: 30px;
    background-color: #7bc976;
    border: 2px solid #7bc976;
    text-decoration: none;
    }
    </style>
    <div style="width: 252px; position: absolute; z-index: 630; left: 5px; top: 5px;">
    <a id="Link to rules page" href="#">(hotelname) rules</a>
    <a type="button" value="Fullscreen" onclick="toggleFullScreen()" id="fullscreenmode" href="#">Fullscreen</a>
    </div>
 

Users who are viewing this thread

Top