User Profile

Collapse

Profile Sidebar

Collapse
LONDONLAD1978
LONDONLAD1978
Last Activity: Nov 19 '14, 04:22 PM
Joined: Nov 5 '14
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • OK.. If if i enter:
    Code:
    setTimeout(function() {
    $('#StartBtn').css('visibility', 'visible');
    }, 3000);
    , as well as removing
    Code:
    <div id="StartBtn">Start Game</div>
    from the
    Code:
    <div id="HomePanel" class="GamePanel">
    section and have it on its own, the code works.. however.. the Start Button appears on the bottom of the game panel and when the game finishes under the wording "Busted, Try Again"...
    See more | Go to post

    Leave a comment:


  • If i enter

    Code:
    ShowHomeScreen();
    within that code, the main home panel, with start button etc appears, but its causes a few issues when playing the game.. I'm just wanting the Start Button to appear on its own linking through to the game panel.
    See more | Go to post

    Leave a comment:


  • I only want the button to appear, not the game panel, I can make that appear no problem, I just need the Start button to appear on its own.

    I presume this is right?

    Code:
    function EndGame(HasTiledOut) {
    
    
    $('#EntireScreen').html('');
    
    var GameOutcomeText = (HasTiledOut) ? 'Busted!!' : 'Try Again!';
    
    $('#GameOutcome').text(GameOutcomeText).fadeIn();
    
    setTimeout(function()
    ...
    See more | Go to post

    Leave a comment:


  • Hi, have sent you a message privately with a JSFiddle link..
    See more | Go to post

    Leave a comment:


  • Linking from 1 page to another via a Start Button

    Hi everyone.. I've created a game using JS/CSS/HTML5 just something simple, however, I have used a start button.. with the following code ... $('#StartBtn'). click(LaunchGam e); -- which when pressed launches the game from the home screen.. however when the player loses on the game, the game panel disappears and the words "busted, Try Again" appear, which is fine, however, I'm trying to get the Start Button to appear after 2/3secs linking...
    See more | Go to post
No activity results to display
Show More
Working...