index.html 2.0 KB
Newer Older
W
wangqun 已提交
1 2 3 4 5
<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title>paddle web demo</title>
W
wangqun 已提交
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
        <meta name="viewport" content="width=device-width,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no,initial-scale=1,viewport-fit=cover">
        <style>
            p {
                display: block;
                margin-block-start: 1em;
                margin-block-end: 1em;
                margin-inline-start: 0;
                margin-inline-end: 0;
            }
            #uploadImg {
                border: solid 1px #808080;
                width: 100%;
                padding: 10px;
                background-color: #cabfbf;
                color: #FFF;
                font-size: 16px;
            }
            p.section-head {
                font-variant: small-caps;
                text-transform: uppercase;
                letter-spacing: .17em;
                line-height: 1.2em;
                font-weight: 500;
                margin-top: 2em;
                margin-bottom: 1em;
                border-left: 1px solid #EF6C00;
                padding-left: 24px;
                color: #818181;
            }
            .image-wrap {
                position: relative;
            }
            #image {
                width: 100%;
            }
            #myDiv {
                position: absolute;
                border: 1px solid #F00;
                box-sizing: border-box;
            }
        </style>
W
wangqun 已提交
47 48
    </head>
    <body>
W
wangqun 已提交
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
        <section class="title-area">
            <h1>Paddle.js: Using a pretrained mobileNet V2</h1>
        </section>

        <section>
            <p class="section-head">Description</p>
            <p>
                Please upload a picture to experience online classification.
            </p>
        </section>
        <section>
            <img id="image" src="https://m.baidu.com/se/static/img/iphone/logo.png" style="max-width: 100%;">
            <input type="file" id="uploadImg">
            <div id="txt"></div>
        </section>
W
wangqun 已提交
64 65 66
        <script src="index.es6"></script>
    </body>
</html>