"tiket"
Bootstrap 3.0.0 Snippet by evarevirus

<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script> <script src="//code.jquery.com/jquery-1.11.1.min.js"></script> <!------ Include the above in your HEAD tag ----------> <!DOCTYPE html><html class=''> <head><script src='//production-assets.codepen.io/assets/editor/live/console_runner-079c09a0e3b9ff743e39ee2d5637b9216b3545af0de366d4b9aad9dc87e26bfd.js'></script><script src='//production-assets.codepen.io/assets/editor/live/events_runner-73716630c22bbc8cff4bd0f07b135f00a0bdc5d14629260c3ec49e5606f98fdd.js'></script><script src='//production-assets.codepen.io/assets/editor/live/css_live_reload_init-2c0dc5167d60a5af3ee189d570b1835129687ea2a61bee3513dee3a50c115a77.js'></script><meta charset='UTF-8'><meta name="robots" content="noindex"><link rel="shortcut icon" type="image/x-icon" href="//production-assets.codepen.io/assets/favicon/favicon-8ea04875e70c4b0bb41da869e81236e54394d63638a1ef12fa558a4a835f1164.ico" /><link rel="mask-icon" type="" href="//production-assets.codepen.io/assets/favicon/logo-pin-f2d2b6d2c61838f7e76325261b7195c27224080bc099486ddd6dccb469b8e8e6.svg" color="#111" /><link rel="canonical" href="https://codepen.io/ajskelton/pen/NdrjBm?depth=everything&order=popularity&page=11&q=movie&show_forks=false" /> <link href="https://fonts.googleapis.com/css?family=Yanone+Kaffeesatz:400,700" rel="stylesheet"> <link rel='stylesheet prefetch' href='https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css'> <style class="cp-pen-styles">body { background-color: Thistle; font-family: 'Yanone Kaffeesatz', sans-serif; font-weight: 600; } img { max-width: 100%; height: auto; } .ticket { width: 400px; height: 775px; background-color: white; margin: 25px auto; position: relative; } .holes-top { height: 50px; width: 50px; background-color: Thistle; border-radius: 50%; position: absolute; left: 50%; margin-left: -25px; top: -25px; } .holes-top:before, .holes-top:after { content: ''; height: 50px; width: 50px; background-color: Thistle; position: absolute; border-radius: 50%; } .holes-top:before { left: -200px; } .holes-top:after { left: 200px; } .holes-lower { position: relative; margin: 25px; border: 1px dashed #aaa; } .holes-lower:before, .holes-lower:after { content: ''; height: 50px; width: 50px; background-color: Thistle; position: absolute; border-radius: 50%; } .holes-lower:before { top: -25px; left: -50px; } .holes-lower:after { top: -25px; left: 350px; } .title { padding: 50px 25px 10px; } .cinema { color: #aaa; font-size: 22px; } .movie-title { font-size: 50px; } .info { padding: 15px 25px; } table { width: 100%; font-size: 18px; margin-bottom: 15px; } table tr { margin-bottom: 10px; } table th { text-align: left; } table th:nth-of-type(1) { width: 38%; } table th:nth-of-type(2) { width: 40%; } table th:nth-of-type(3) { width: 15%; } table td { width: 33%; font-size: 32px; } .bigger { font-size: 48px; } .serial { padding: 25px; } .serial table { border-collapse: collapse; margin: 0 auto; } .serial td { width: 3px; height: 50px; } .numbers td { font-size: 16px; text-align: center; } </style></head><body> <!-- Inspired by: https://dribbble.com/shots/1166639-Movie-Ticket/attachments/152161 --> <div class="ticket"> <div class="holes-top"></div> <div class="title"> <p class="cinema">ODEON CINEMA PRESENTS</p> <p class="movie-title">ONLY GOD FORGIVES</p> </div> <div class="poster"> <img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/25240/only-god-forgives.jpg" alt="Movie: Only God Forgives" /> </div> <div class="info"> <table> <tr> <th>SCREEN</th> <th>ROW</th> <th>SEAT</th> </tr> <tr> <td class="bigger">18</td> <td class="bigger">H</td> <td class="bigger">24</td> </tr> </table> <table> <tr> <th>PRICE</th> <th>DATE</th> <th>TIME</th> </tr> <tr> <td>$12.00</td> <td>1/13/17</td> <td>19:30</td> </tr> </table> </div> <div class="holes-lower"></div> <div class="serial"> <table class="barcode"><tr></tr></table> <table class="numbers"> <tr> <td>9</td> <td>1</td> <td>7</td> <td>3</td> <td>7</td> <td>5</td> <td>4</td> <td>4</td> <td>4</td> <td>5</td> <td>4</td> <td>1</td> <td>4</td> <td>7</td> <td>8</td> <td>7</td> <td>3</td> <td>4</td> <td>1</td> <td>4</td> <td>5</td> <td>2</td> </tr> </table> </div> </div> <script src='//production-assets.codepen.io/assets/common/stopExecutionOnTimeout-b2a7b3fe212eaa732349046d8416e00a9dec26eb7fd347590fbced3ab38af52e.js'></script><script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.0/jquery.min.js'></script> <script >var code = '11010010000100111011001011101111011010001110101110011001101110010010111101110111001011001001000011011000111010110001001110111101101001011010111000101101' table = $('.barcode tr'); for(var i = 0; i < code.length; i++) {if (window.CP.shouldStopExecution(1)){break;} if( code[i]==1 ) { table.append('<td bgcolor="black">') } else { table.append('<td bgcolor="white">') } } window.CP.exitedLoop(1); //# sourceURL=pen.js </script> </body></html>

Related: See More


Questions / Comments: