Changeset 2463569
- Timestamp:
- 01/27/2021 01:22:39 PM (5 years ago)
- Location:
- bbaton-anonymous-age-verification
- Files:
-
- 28 added
- 1 deleted
- 4 edited
-
assets/screenshot-2.JPG (added)
-
assets/screenshot-2.png (deleted)
-
tags/1.10 (added)
-
tags/1.10/assets (added)
-
tags/1.10/assets/BBaton_Logo_Login_KR_v2.png (added)
-
tags/1.10/assets/bg-login.jpg (added)
-
tags/1.10/assets/blue-white.jpg (added)
-
tags/1.10/assets/css (added)
-
tags/1.10/assets/css/bbaa.css (added)
-
tags/1.10/assets/exit_button.png (added)
-
tags/1.10/assets/iamport.png (added)
-
tags/1.10/assets/js (added)
-
tags/1.10/assets/js/bbaa.js (added)
-
tags/1.10/assets/js/bbaa_confirm.js (added)
-
tags/1.10/assets/js/bcup.bbaa.js (added)
-
tags/1.10/assets/logo_company.png (added)
-
tags/1.10/assets/promo.mp4 (added)
-
tags/1.10/assets/promo.png (added)
-
tags/1.10/bbaa_back (added)
-
tags/1.10/bbaa_back/bbaa_api_settings.php (added)
-
tags/1.10/bbaa_back/media-uploader.js (added)
-
tags/1.10/bbaa_front (added)
-
tags/1.10/bbaa_front/bbaa_login_process.php (added)
-
tags/1.10/bbaton-ananoymous-age-verification.php (added)
-
tags/1.10/index.php (added)
-
tags/1.10/license.txt (added)
-
tags/1.10/login-page.php (added)
-
tags/1.10/readme.txt (added)
-
trunk/assets/bg-login.jpg (added)
-
trunk/assets/css/bbaa.css (modified) (2 diffs)
-
trunk/assets/js/bbaa.js (modified) (1 diff)
-
trunk/bbaton-ananoymous-age-verification.php (modified) (1 diff)
-
trunk/login-page.php (modified) (9 diffs)
Legend:
- Unmodified
- Added
- Removed
-
bbaton-anonymous-age-verification/trunk/assets/css/bbaa.css
r2455670 r2463569 162 162 display: block; 163 163 overflow: hidden; 164 background: white;164 background: transparent !important; 165 165 } 166 166 … … 168 168 float: left; 169 169 max-width: 480px; 170 text-align: left !important; 170 171 } 171 172 172 173 .col-right { 173 float: left;174 /* float: left;*/ 174 175 max-width: 480px; 175 176 } -
bbaton-anonymous-age-verification/trunk/assets/js/bbaa.js
r2459468 r2463569 95 95 96 96 }); 97 jQuery('#ignore_mail').on('click', function(){ 98 jQuery('#detail_popup').hide(); 99 if (url_initial.indexOf("?") < 0) 100 url_initial += "?iamport_response_code=" + mer_uid; 101 else 102 url_initial += "&iamport_response_code=" + mer_uid; 103 window.location.href = url_initial; 104 }); 105 97 106 var mail_form = jQuery('#mail_form'); 98 107 if (mail_form.length > 0 ) { -
bbaton-anonymous-age-verification/trunk/bbaton-ananoymous-age-verification.php
r2459474 r2463569 3 3 Plugin Name: 비바톤 익명 성인인증 | BBaton Anonymous Age Verification 4 4 Description: Anonymous Age Verification Service for Korean Users 5 Version: 1. 9.105 Version: 1.10 6 6 Author: BBaton 7 7 Author URI: https://www.bbaton.com -
bbaton-anonymous-age-verification/trunk/login-page.php
r2453574 r2463569 2 2 <link href="<?php echo plugins_url('assets/css/bbaa.css?ver=1.7.2', __FILE__); ?>" rel="stylesheet"> 3 3 <style> 4 .col-right{ 5 display: inline-grid; 6 position: relative !important; 7 top: 38% !important; 8 left: 10% !important; 9 } 4 10 html { 5 11 min-height: 100%; … … 17 23 } 18 24 19 #submit_btn {25 #submit_btn{ 20 26 background-color: #0071bc !important; 21 27 padding: 11px 48px; … … 24 30 font-weight: bold; 25 31 } 32 26 33 .tag_line { 27 34 font-size: 20px; … … 47 54 overflow: hidden; 48 55 } 56 #detail_popup { 57 background: url(<?php echo plugins_url('assets/bg-login.jpg', __FILE__); ?>) !important; 58 background-size: auto; 59 background-size: cover !important; 60 } 61 62 .imp-dialog.pc.certification-danal { 63 background: url(<?php echo plugins_url('assets/bg-login.jpg', __FILE__); ?>) !important; 64 background-size: auto; 65 background-size: cover !important; 66 } 49 67 .bbaa { 50 background: url(<?php echo plugins_url('assets/b lue-white.jpg', __FILE__); ?>) !important;68 background: url(<?php echo plugins_url('assets/bg-login.jpg', __FILE__); ?>) !important; 51 69 background-size: cover !important; 52 70 font-family: "Nanum Gothic", sans-serif; 53 71 overflow-y: auto; 72 background-position: right !important; 54 73 } 55 74 a:hover, a:visited, a:link, a:active { … … 67 86 margin: auto !important; 68 87 } 88 #bbaton_auth { 89 padding-top: 100px; 90 } 91 .btn-container {text-align:left; padding-bottom:25px;} 92 .btn-container img{ 93 max-width: 80%; 94 95 } 96 html body .bbaa .cs-container .col-right { left:15% !important;} 69 97 </style> 70 98 <div class="bbaa"> 71 99 <div class="cs-container"> 72 100 <div class="col-left"> 73 <video id="promo-video" height="270" muted autoplay preload="none" loop="" style="width:100%;" poster="<?php echo plugins_url('assets/promo.png', __FILE__); ?>">74 <source src="<?php echo plugins_url('assets/promo.mp4', __FILE__); ?>" type="video/mp4">75 </video>76 </div>77 <div class="col-right text-center">78 101 <div class="spacer"> 79 102 <span class="number">19</span> … … 81 104 본 내용은 청소년 유해매체물로서 정보통신망 이용촉진법 및 정보보호 등에 관한 법률 및 청소년 보호법 규정에 의하여 19세 미만의 청소년은 사용할 수 없습니다. 82 105 </p> 83 <div class="content-33"> 84 <div style="padding: 4px;"> 85 <a style='display: inline-block;' id='bbaton_auth' href='#'> 86 <img src='<?php echo plugins_url('assets/BBaton_Logo_Login_KR_v2.png?ver=2.12', __FILE__); ?>'/></a> 87 </div> 88 </div> 89 <div class="content-33"> 90 <div style="padding: 4px;"> 91 <a style='display: inline-block;' id='iamport_auth' href='#'> 92 <img src='<?php echo plugins_url('assets/iamport.png?ver=2.12', __FILE__); ?>'/></a> 93 </div> 94 </div> 95 <div class="content-33"> 106 <div class="btn-container"> 96 107 <div style="padding: 4px;"> 97 108 <a style='display: inline-block;' href='<?php echo get_option('bbaa_exit_url'); ?>'> … … 100 111 </div> 101 112 </div> 113 </div> 114 <div class="col-right text-center"> 115 <div class="btn-container"> 116 <div style="padding: 4px;"> 117 <a style='display: block;' id='bbaton_auth' href='#'> 118 <img src='<?php echo plugins_url('assets/BBaton_Logo_Login_KR_v2.png?ver=2.12', __FILE__); ?>'/></a> 119 </div> 120 </div> 121 <div class="btn-container"> 122 <div style="padding: 4px;"> 123 <a style='display: block;' id='iamport_auth' href='#'> 124 <img src='<?php echo plugins_url('assets/iamport.png?ver=2.12', __FILE__); ?>'/></a> 125 </div> 126 </div> 102 127 </div> 103 128 </div> … … 115 140 </div> 116 141 <div class="email_container"> 117 <form action="" method="post" id="mail_form">142 <form action="" method="post" id="mail_form"> 118 143 <p>이메일로 처리 결과를 보내 드리겠습니다.</p> 119 144 <label for=""></label> 120 <input type="email" placeholder="이메일" name="user_email" id="user_email" >145 <input type="email" placeholder="이메일" name="user_email" id="user_email" required> 121 146 <div> 122 147 <input style="background-color: #0071bc !important;" type="submit" name="mail_submit" value="완료" id="submit_btn"> 148 <!-- <input style="background-color: #0071bc !important;" type="button" name="ignore_mail" value="아니오, 괜찮습니다" id="ignore_mail"> --> 123 149 </div> 150 <div style="margin-top: 8px;"><a href="#" id="ignore_mail" style="text-decoration: underline !important;">아니오, 괜찮습니다</a></div> 124 151 </form> 125 152 <div class="last_step"> … … 142 169 jQuery("header").remove(); 143 170 jQuery("#header-top-bar").remove(); 144 jQuery(document).ready(function(){145 var promo_video = document.getElementById('promo-video');146 promo_video.muted = true;147 promo_video.play();148 });149 function startVideoIfNotStarted () {150 jQuery(".id_of_video_tag").ready(function () {151 window.setTimeout(function(){152 var promo_video = document.getElementById('promo-video');153 promo_video.muted = true;154 promo_video.play();155 }, 1000);156 });157 }158 jQuery(startVideoIfNotStarted);159 171 </script>
Note: See TracChangeset
for help on using the changeset viewer.