Project. HTML

Page 3 of 4 FirstFirst 1234 LastLast
Results 31 to 45 of 48
  1. #31
    Account Upgraded | Title Enabled! Alozi is offline
    MemberRank
    Nov 2014 Join Date
    SwedenLocation
    452Posts

    Re: Project. HTML

    Ok guys guys! Let not change this thread to a big thread of different releases/developments xD

  2. #32
    Valued Member BronzeSpider547 is offline
    MemberRank
    Dec 2015 Join Date
    139Posts

    Re: Project. HTML

    Changelog [2016-02-16.17:25]
    - Re-Started project resulting Mysql_* removal also, Will code cleaner.

    TeamViewer Meeting [2016-02-16.18:40]
    m78-905-403

    Changelog [2016-02-16.20:02]
    - Loader were made.
    Last edited by BronzeSpider547; 16-02-16 at 08:04 PM.

  3. #33
    Valued Member BronzeSpider547 is offline
    MemberRank
    Dec 2015 Join Date
    139Posts

    Re: Project. HTML

    New MEeting ID: m06-721-545

  4. #34
    Member ZoekGamer is offline
    MemberRank
    Dec 2015 Join Date
    En tu mirada.Location
    66Posts

    Re: Project. HTML

    Awesome ^^ good lucks :3

  5. #35
    Valued Member BronzeSpider547 is offline
    MemberRank
    Dec 2015 Join Date
    139Posts

    Re: Project. HTML

    TeamViewer Meeting [2016-02-17.10:08]
    m58-993-262

  6. #36
    Apprentice Finicky is offline
    MemberRank
    Jan 2016 Join Date
    Lé NetherlandsLocation
    10Posts

    Re: Project. HTML

    Loader does look cool, but for me personally the animation is a little too slow


    Sent from my iPhone using Tapatalk.

  7. #37
    Proficient Member Yesser is offline
    MemberRank
    Aug 2010 Join Date
    179Posts

    Re: Project. HTML

    Quote Originally Posted by The General View Post
    You might want to consider making it impossible to drag boxes outside the window.

    And my OCD doesn't like the unspaced text boxes and buttons.

    Looks good nonetheless ^.^
    My OCD doesn't like the not bold letters. I'm about to break my laptop.

  8. #38
    Valued Member BronzeSpider547 is offline
    MemberRank
    Dec 2015 Join Date
    139Posts

    Re: Project. HTML

    ChangeLog 2016-02-18.09:52
    - The dialogs was made completly, Snippets of it is under.
    - Together with the dialog comes an "X" button, Both the button and the dialog is only css, Not a single image.

    Snippet for: Dialog Box.
    HTML:
    PHP Code:
    <!--Login Box-->
            <
    div class="dialog_340x200" id="login_box">
                <
    div class="dialog_340x200_header">
                    <
    center>
                        <
    span style="top: 4px; left: 0; right: 0; margin: auto; position: absolute;">
                            <
    b>
                                
    ProjectHTML
                            
    </b>
                        </
    span>
                    </
    center>
                    <
    div class="cross">x</div>
                </
    div>
                <
    div class="dialog_340x200_content">
                </
    div>
            </
    div
    JavaScript:
    PHP Code:
    $(document).ready(function () 
    {
       $(
    '.dialog_340x200').draggable(
       {
            
    opacity0.35,
            
    handle'.dialog_340x200_header',
            
    containment"box"
        
    });
    }); 
    CSS:
    PHP Code:
    .dialog_340x200
    {
        
    width340px;
        
    height200px;
        
    border1px rgb(000solid;
        -
    webkit-border-radius5px;
        -
    moz-border-radius5px;
        
    border-radius5px;
        
    left0;
        
    right0;
        
    bottom0;
        
    top0;
        
    positionabsolute;
        
    marginauto;
    }

    .
    dialog_340x200_header
    {
        
    width336px;
        
    height32px;
        
    border2px solid #367897;
        
    background-color#367897;
        
    -webkit-border-top-left-radius5px;
        -
    moz-border-radius-topleft5px;
        
    border-top-left-radius5px;
        -
    webkit-border-top-right-radius5px;
        -
    moz-border-radius-topright5px;
        
    border-top-right-radius5px;
        
    colorwhite;
        
    cursorpointer;
    }

    .
    dialog_340x200_content
    {
        
    width340px;
        
    height172px;
        
    border1px solid black;
        
    background-color#E9E9E1;
        
    -webkit-border-bottom-left-radius5px;
        -
    moz-border-radius-bottomleft5px;
        
    border-bottom-left-radius5px;
        -
    webkit-border-bottom-right-radius5px;
        -
    moz-border-radius-bottomright5px;
        
    border-bottom-right-radius5px;
        
    left: -1px;
        
    right0;
        
    bottom0;
        
    top32px;
        
    positionabsolute;
        
    marginauto;

    Features:
    - Only able to drag inside the <body> tag.
    - No images.
    - Can only be dragged by the header.
    - Easy to add another box.

    Snippet for: Button
    HTML:
    PHP Code:
    <div class="cross">x</div
    CSS:
    PHP Code:
    .cross
    {
        
    width17px;
        
    height18px;
        
    box-shadow0 0 0 1px black;
        
    border#DE4537 solid 1px;
        
    background-imagelinear-gradient(bottom#91241A  50%, #BD3B2F 50%);
        
    background-image: -o-linear-gradient(bottom#91241A  50%, #BD3B2F 50%);
        
    background-image: -moz-linear-gradient(bottom#91241A  50%, #BD3B2F 50%);
        
    background-image: -webkit-linear-gradient(bottom#91241A  50%, #BD3B2F 50%);
        
    background-image: -ms-linear-gradient(bottom#FFD51A 50%, #FAC815 50%);
        
    colorrgb(255255255);
        
    font-sizeinherit;
        
    font-weightinherit;
        
    font-familyTahomaGenevasans-serif;
        
    font-styleinherit;
        
    text-decorationinherit;
        
    text-aligncenter;
        
    line-height1.15em;
        
    letter-spacing0em;
        -
    webkit-border-radius5px;
        -
    moz-border-radius5px;
        
    border-radius5px;
        
    right8px;
        
    top4px;
        
    positionabsolute;
        
    cursorpointer;
    }

    .
    cross:hover
    {
        
    border#B79491 solid 1px;
        
    background-imagelinear-gradient(bottom#BC938F  50%, #8E7370 50%);
        
    background-image: -o-linear-gradient(bottom#BC938F  50%, #8E7370 50%);
        
    background-image: -moz-linear-gradient(bottom#BC938F  50%, #8E7370 50%);
        
    background-image: -webkit-linear-gradient(bottom#BC938F  50%, #8E7370 50%);
        
    background-image: -ms-linear-gradient(bottom#BC938F 50%, #8E7370 50%);


    Features:
    - Unable to drag the dialog by the cross.
    - No images.
    - Can only be added to the header.
    - Easy to add another cross.

  9. #39
    Developer & Designer Francis Joseph is offline
    MemberRank
    Mar 2007 Join Date
    /f282Location
    246Posts

    Re: Project. HTML

    OT: If you're going to code than host. I'm on my lunchbreak and need something to do.

  10. #40
    Valued Member BronzeSpider547 is offline
    MemberRank
    Dec 2015 Join Date
    139Posts

    Re: Project. HTML

    TeamViewer [2016-02-18.14:00]
    m01-568-118

  11. #41
    Proficient Member Yesser is offline
    MemberRank
    Aug 2010 Join Date
    179Posts

    Re: Project. HTML

    Quote Originally Posted by BronzeSpider547 View Post
    TeamViewer [2016-02-18.14:00]
    m01-568-118
    Doesn't work anymore.

  12. #42
    Proficient Member Yesser is offline
    MemberRank
    Aug 2010 Join Date
    179Posts

    Re: Project. HTML

    Keep going with this project.

    Advice
    You should add some styles for the texts. Looks like I read something from notepad.

  13. #43
    git bisect -m ovflowd is offline
    MemberRank
    Sep 2011 Join Date
    2,191Posts

    Re: Project. HTML

    Loading is weird. Is a lot cinematic. watching video i think i'm on theatre and some presentation will start, and not a startup of a game. Since i can't ever seen the progresso of loading..

    Will the fade of these "walls" be delayed with the %amount% of loading progress?

  14. #44
    Preparing Riizq is offline
    MemberRank
    Sep 2011 Join Date
    1,829Posts

    Re: Project. HTML

    I read the thread, was happy to see so much good stuff. And then one post, you said you were back to square one.
    That is sad, but you have not given up.

    Keep it up buddy.
    And about the loader looks good it

  15. #45
    Member ZoekGamer is offline
    MemberRank
    Dec 2015 Join Date
    En tu mirada.Location
    66Posts

    Re: Project. HTML

    New updates??



Page 3 of 4 FirstFirst 1234 LastLast

Advertisement