Showing
1 changed file
with
0 additions
and
77 deletions
index.html
deleted
100644 → 0
| 1 | -<!DOCTYPE html> | ||
| 2 | -<html lang="ko"> | ||
| 3 | -<head> | ||
| 4 | - <!-- Global site tag (gtag.js) - Google Analytics --> | ||
| 5 | - <script async src="https://www.googletagmanager.com/gtag/js?id=UA-134051594-4"></script> | ||
| 6 | - <script> | ||
| 7 | - window.dataLayer = window.dataLayer || []; | ||
| 8 | - function gtag(){dataLayer.push(arguments);} | ||
| 9 | - gtag('js', new Date()); | ||
| 10 | - | ||
| 11 | - gtag('config', 'UA-134051594-4'); | ||
| 12 | - </script> | ||
| 13 | - | ||
| 14 | - <meta charset="UTF-8"> | ||
| 15 | - <meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
| 16 | - <meta name="application-name" content="악질 직업 생성기"> | ||
| 17 | - <meta name="theme-color" content="#000"> | ||
| 18 | - <meta name="description" content="당신만의 악질 직업을 생성하세요."> | ||
| 19 | - <title>악질 직업 생성기</title> | ||
| 20 | - <link rel="stylesheet" href="../css/style.css"> | ||
| 21 | - <meta property="og:url" content="https://job.ho9.me"> | ||
| 22 | - <meta property="og:type" content="website"> | ||
| 23 | - <meta property="og:title" content="악질 직업 생성기"> | ||
| 24 | - <meta property="og:description" content="당신만의 악질 직업을 생성하세요."> | ||
| 25 | - <meta property="og:site_name" content="악질 직업 생성기"> | ||
| 26 | - <meta property="og:locale" content="ko_KR"> | ||
| 27 | - <meta name="twitter:url" content="https://job.ho9.me"> | ||
| 28 | - <meta name="twitter:title" content="악질 직업 생성기"> | ||
| 29 | - <meta name="twitter:description" content="당신만의 악질 직업을 생성하세요."> | ||
| 30 | -</head> | ||
| 31 | -<body class="preload"> | ||
| 32 | - <div class="container"> | ||
| 33 | - <div class="hero"> | ||
| 34 | - <h1><span class="title-identifier">악질 직업</span> 생성기</h1> | ||
| 35 | - <p>랜덤으로 <span class="title-identifier">악질 직업을</span> 생성합니다.</p> | ||
| 36 | - </div> | ||
| 37 | - <div class="form"> | ||
| 38 | - <form action="" autocomplete="off"> | ||
| 39 | - <div class="wrapper"><div class="form-8bit"><div class="form-8bit-wrapper"><input class="form-component input light-dark" type="text" name="location" id="location" placeholder="거주지(선택)"></div></div></div> | ||
| 40 | - <div class="wrapper"><div class="form-8bit"><div class="form-8bit-wrapper"><input class="form-component input light-dark" type="text" name="name" id="name" placeholder="이름" onchange="joonsikfinder(this.value)"></div></div></div> | ||
| 41 | - <div style="display: inline-block;"> | ||
| 42 | - <label for="is-limited"><div class="wrapper checkboxlabeler"><div id="is-limited-wrapper" class="form-8bit"><div class="form-8bit-wrapper"><input id="is-limited" class="checkboxlabeler-input" type="checkbox"></div></div></div><p class="checkboxlabeler" id="is-limited-alerter">글자수 제한</p></label> | ||
| 43 | - <div class="wrapper" id="is-limited-num"><div class="form-8bit"><div class="form-8bit-wrapper"><input class="form-component input light-dark" type="number" name="is-limited-num" id="is-limited-num-input" placeholder="N자리" onchange=""></div></div></div> | ||
| 44 | - </div> | ||
| 45 | - <div class="wrapper"><div class="form-8bit"><div class="form-8bit-wrapper"><div class="form-component button" onclick="generate(document.getElementById('name').value, document.getElementById('location').value, 'result')">생성!</div></div></div></div> | ||
| 46 | - </form> | ||
| 47 | - </div> | ||
| 48 | - </div> | ||
| 49 | - <div class="container"> | ||
| 50 | - <div class="wrapper"> | ||
| 51 | - <p class="result" id="result">생성 버튼을 누르면 여기에 결과가 표시됩니다.</p> | ||
| 52 | - </div> | ||
| 53 | - <hr> | ||
| 54 | - <div class="example"> | ||
| 55 | - <p>어떤 직업이 나올까?</p> | ||
| 56 | - <div class="input-example light-dark" id="example-location">동탄</div> | ||
| 57 | - <div class="input-example light-dark" id="example-name">엄준식</div> | ||
| 58 | - → | ||
| 59 | - <div class="input-example light-dark" id="example-result">동탄사우나수건도둑엄준식</div> | ||
| 60 | - </div> | ||
| 61 | - </div> | ||
| 62 | - <div class="github-wrapper"><div class="form-8bit"><div class="form-8bit-wrapper"><div class="github"><a href="detail.html" target="_blank">대체 여긴 뭐하는 사이트인가요?</a></div></div></div></div> | ||
| 63 | - <script src="../js/josa.js"></script> | ||
| 64 | - <script src="../js/common.js"></script> | ||
| 65 | - <script src="../js/contents.js"></script> | ||
| 66 | - <script src="../js/generate.js"></script> | ||
| 67 | - <script> | ||
| 68 | - setInterval(function () { | ||
| 69 | - var exampleName = exampleNames[Math.floor(Math.random() * exampleNames.length)] | ||
| 70 | - var exampleLocation = exampleLocations[Math.floor(Math.random() * exampleLocations.length)] | ||
| 71 | - generate(exampleName, exampleLocation, 'example-result') | ||
| 72 | - document.getElementById('example-location').innerHTML = exampleLocation | ||
| 73 | - document.getElementById('example-name').innerHTML = exampleName | ||
| 74 | - }, 5000) | ||
| 75 | - </script> | ||
| 76 | -</body> | ||
| 77 | -</html> |
-
Please register or login to post a comment