Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
    <head>
        <title>Project 04</title>
        <link rel="stylesheet" type="text/css" href="styles.css">
        <link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/themes/smoothness/jquery-ui.css">
    </head>
    <body>
        <div id="topbar">
            <h2>Code Runner</h2>
            <div id="control">
                <a href="#" class="option opactive">HTML</a>
                <a href="#" class="option opactive">CSS</a>
                <a href="#" class="option opactive">JavaScript</a>
                <a href="#" class="option opactive">Output</a>
            </div>
        </div>
        
        <div id="codebox">
            <div id="HTML" class="content active">              
                <div class="contentbox">
                    <div class="contentheader">HTML</div>
                    <div class="editbox" id="HTMLeditbox">
                        <textarea id="HTMLcode" class="textareabox"></textarea>
                    </div>
                </div>
            </div>
            <div class="resize active" id="1"style="left: 25%" ondrag="dragging(event)"></div>          
            <div id="CSS" class="content active">
                <div class="contentbox">
                    <div class="contentheader">CSS</div>
                    <div class="editbox" id="CSSeditbox">
                        <textarea id="CSScode" class="textareabox"></textarea>
                    </div>
                </div>
            </div>
            <div class="resize active" id="2"style="left: 50%" ondrag="dragging(event)"></div>
            <div id="JavaScript" class="content active">
                <div class="contentbox">
                    <div class="contentheader">JavaScript</div>
                    <div class="editbox" id="JavaScripteditbox">
                        <textarea id="JavaScriptcode" class="textareabox"></textarea>
                    </div>
                </div>
            </div>
            <div class="resize active" id="3"style="left: 75%" ondrag="dragging(event)"></div>
            <div id="Output" class="content active">
                <div class="contentbox">
                    <div class="contentheader">Output</div>
                    <div class="editbox" id="Outputbox">
                        <iframe id="Outputframe" class="textareabox"></iframe>
                    </div>
                </div>
            </div>
        </div>
            
        <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
        <script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js"></script>
        <script type="text/javascript" src="jscript.js"></script>
    </body>
</html>
 
body{
    margin: 0;
    padding: 0;
    overflow-y: hidden;
    overflow-x: hidden;
    background: #F7F7F7;
    font-family: Arial;
}
#topbar{
    margin: 0;
    padding: 0;
    width: 100%;
    height: 35px;
    background: #EEEEEE;
    position: relative;
}
h2{
    margin: 2px 0 0 0;
    padding: 0;
    float: left;
    position: absolute;
}
#control{
    width: 100%;
    margin: 8px 0 0 0;
    padding: 0;
    position: absolute;
    text-align: center;
}
.option{
    margin: 0 -5px 0 0;
    padding: 5px 10px 5px 10px;
    text-align: center;
    border-top: 1px solid #CCC;
    border-bottom: 1px solid #CCC;
    border-left: 1px solid #CCC;
    text-decoration: none;
    font-size: 0.9em;
    color: black;
}
.option:first-child{
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
}
.option:last-child{
    border-right: 1px solid #CCC;
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
}
.option:hover{
    background: #dee5e5;
}
.opactive{
    background: #EBF3FF;
}
.opinactive{
    background: 0;
}
.active{
    display: block;
}
.inactive{
    display: none;
}
#codebox{
    margin: 0;
    padding: 0
    width: 100%;
    position: static;
    top: 35px;
    background: white;
}
.content{
    margin: 0;
    padding: 0;
    min-width: 10%;
    max-width: 100%;
    position: absolute;
    float: left;
    color: #6DCAFC;
    background: #F7F7F7;    
    overflow: hidden;
}
.resize{
    top: 35px;
    bottom: 0px;
    width: 1px;
    margin-left: 0;
    height: 100%;
    right: auto;
    opacity: 0;
    position: absolute;
    cursor: ew-resize;
    border-left-width: 1px;
    border-left-style: solid;
    border-left-color: rgba(218, 218, 218, 0.498039);
    z-index: 99999;
    background: #666;
}
.contentheader{
    margin: 0;
    padding: 0;
    background: transparent;
    position: relative;
}
.selectedcontent{
    background: white;
}
.contentbox{
    width: 100%;
    height: 100%;
    background: transparent;
    position: relative;
    box-sizing: border-box;
    border-right: 1px solid darkgrey;
    overflow: hidden;
}
.editbox{
    width: 100%;
    height: 100%;
    background: transparent;
    overflow: hidden;
}
.textareabox{
    background: transparent;
    min-width: 100%;
    max-width: 100%;
    min-height: 100%;
    max-height: 100%;
    border: none;
    outline: none;
    resize: none;
}
Output

This bin was created anonymously and its free preview time has expired (learn why). — Get a free unrestricted account

Dismiss x
public
Bin info
anonymouspro
0viewers