反馈修改-1123

master
Lee 2022-11-23 17:30:38 +08:00
parent 32c69dd4d4
commit 88960612b0
4 changed files with 44 additions and 20 deletions

View File

@ -86,12 +86,12 @@
</div> </div>
<div class="right"> <div class="right">
<div> <div>
<p class="f-medium">LightCourse Student Services</p> <p class="f-medium copy-btn-01">LightCourse Student Services</p>
<a href="mailto:studentservice@lightglobal.org"><strong>studentservice@lightglobal.org</strong></a> <a href="mailto:studentservice@lightglobal.org"><strong class="copy-txt-01">studentservice@lightglobal.org</strong></a>
</div> </div>
<div> <div>
<p class="f-medium">Partner With Us</p> <p class="f-medium copy-btn-02">Partner With Us</p>
<a href="mailto:partnerships@lightglobal.org"><strong>partnerships@lightglobal.org</strong></a> <a href="mailto:partnerships@lightglobal.org"><strong class="copy-txt-02">partnerships@lightglobal.org</strong></a>
</div> </div>
</div> </div>
@ -245,7 +245,33 @@
setTimeout(function() { setTimeout(function() {
$(".form-wrap9").removeClass('show'); $(".form-wrap9").removeClass('show');
}, 100); }, 100);
}) })
$(".copy-btn-01").click(function () {
var copy_text = $(".copy-txt-01").text(); //需要复制的内容
var y = $(this).offset().top - 32,
x = $(this).offset().left + 45;
copyText(copy_text);
//复制成功后提示文字
layer.msg("Copy Succeeded");
});
$(".copy-btn-02").click(function () {
var copy_text = $(".copy-txt-02").text(); //需要复制的内容
var y = $(this).offset().top - 32,
x = $(this).offset().left + 45;
copyText(copy_text);
//复制成功后提示文字
layer.msg("Copy Succeeded");
});
function copyText(text) {
var oInput = document.createElement('input');
oInput.value = text;
document.body.appendChild(oInput);
oInput.select();
document.execCommand("Copy");
oInput.className = 'oInput';
oInput.style.display = 'none';
}
</script> </script>
<script> <script>
$("#login_normal_form .sub").click(function(){ $("#login_normal_form .sub").click(function(){

View File

@ -178,7 +178,7 @@
<div class="iconf close-iconf btnclose"></div> <div class="iconf close-iconf btnclose"></div>
<img style="width:10.6rem; display:block; margin: 1.8rem auto 0" src="{$Think.HOME_SITE_ROOT}/new/images/wwww.jpg"> <img style="width:10.6rem; display:block; margin: 1.8rem auto 0" src="{$Think.HOME_SITE_ROOT}/new/images/wwww.jpg">
<p style="font-size:0.9rem; text-align: center; line-height: 1.23; color: #1b1b1b;"> <p style="font-size:0.9rem; text-align: center; line-height: 1.23; color: #1b1b1b;">
Please <span class="c1">scan the WeChat QR Code</span><br />to add our academic advisor<br />and receive your registration information. Please <span class="c1">scan the WeChat QR Code</span> to<br />add our academic advisor<br />and receive additional details.
</p> </p>
<div class="oks" style="margin: 1.5rem auto 2.5rem; cursor: pointer;">Back</div> <div class="oks" style="margin: 1.5rem auto 2.5rem; cursor: pointer;">Back</div>
</div> </div>

View File

@ -234,7 +234,7 @@
display: flex; display: flex;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
color: #0536F9; color: #00db6d;
} }
.cuucess>div:nth-of-type(1) { .cuucess>div:nth-of-type(1) {
@ -817,7 +817,7 @@
<h5 style="color: #1b1b1b; font-size: 1.1rem;">Option 1</h5> <h5 style="color: #1b1b1b; font-size: 1.1rem;">Option 1</h5>
<div class="left-txt" style="display: flex;"> <div class="left-txt" style="display: flex;">
<p class="f-medium" style="line-height: 1.24; font-size: 0.95rem;">Please scan the<br/>WeChat QR Code to<br/>add academic advisor<br/>and receive additional<br/>details.</p> <p class="f-medium" style="line-height: 1.24; font-size: 0.95rem;">Please scan the<br/>WeChat QR Code to<br/>add academic advisor<br/>and receive additional<br/>details.</p>
<img style="width:9rem; margin: -0.5rem 0 0 0.3rem;" src="{$Think.HOME_SITE_ROOT}/new/images/wwww.jpg"> <img style="width:9rem; height: 9rem; margin: -0.5rem 0 0 0.3rem;" src="{$Think.HOME_SITE_ROOT}/new/images/wwww.jpg">
</div> </div>
</div> </div>
<div class="m-item" style="width: 17.6rem;"> <div class="m-item" style="width: 17.6rem;">
@ -1538,12 +1538,16 @@
$(".hint-btn").click(function () { $(".hint-btn").click(function () {
$(".hint-mask").addClass("show") $(".hint-mask").addClass("show")
}) })
$(".form-clk").click(function(){ // $(".form-clk").click(function(){
$(".email").val(''), // $(".email").val(''),
$(".fname").val(''), // $(".fname").val(''),
$(".lname").val(''), // $(".lname").val(''),
$(".school").val(''), // $(".school").val(''),
$(".form-wrap").addClass("show") // $(".form-wrap").addClass("show")
// })
$(".form-clk").click(function(){
$("#email").val('');
$(".form-wrap3").addClass("show")
}) })
$(".form-clk2").click(function(){ $(".form-clk2").click(function(){
$("#emails").val(''), $("#emails").val(''),

View File

@ -1,6 +0,0 @@
location / {
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=$1 last;
break;
}
}