反馈修改-1123
parent
32c69dd4d4
commit
88960612b0
|
@ -86,12 +86,12 @@
|
|||
</div>
|
||||
<div class="right">
|
||||
<div>
|
||||
<p class="f-medium">LightCourse Student Services</p>
|
||||
<a href="mailto:studentservice@lightglobal.org"><strong>studentservice@lightglobal.org</strong></a>
|
||||
<p class="f-medium copy-btn-01">LightCourse Student Services</p>
|
||||
<a href="mailto:studentservice@lightglobal.org"><strong class="copy-txt-01">studentservice@lightglobal.org</strong></a>
|
||||
</div>
|
||||
<div>
|
||||
<p class="f-medium">Partner With Us</p>
|
||||
<a href="mailto:partnerships@lightglobal.org"><strong>partnerships@lightglobal.org</strong></a>
|
||||
<p class="f-medium copy-btn-02">Partner With Us</p>
|
||||
<a href="mailto:partnerships@lightglobal.org"><strong class="copy-txt-02">partnerships@lightglobal.org</strong></a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
@ -245,7 +245,33 @@
|
|||
setTimeout(function() {
|
||||
$(".form-wrap9").removeClass('show');
|
||||
}, 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>
|
||||
$("#login_normal_form .sub").click(function(){
|
||||
|
|
|
@ -178,7 +178,7 @@
|
|||
<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">
|
||||
<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>
|
||||
<div class="oks" style="margin: 1.5rem auto 2.5rem; cursor: pointer;">Back</div>
|
||||
</div>
|
||||
|
|
|
@ -234,7 +234,7 @@
|
|||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
color: #0536F9;
|
||||
color: #00db6d;
|
||||
}
|
||||
|
||||
.cuucess>div:nth-of-type(1) {
|
||||
|
@ -817,7 +817,7 @@
|
|||
<h5 style="color: #1b1b1b; font-size: 1.1rem;">Option 1</h5>
|
||||
<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>
|
||||
<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 class="m-item" style="width: 17.6rem;">
|
||||
|
@ -1538,12 +1538,16 @@
|
|||
$(".hint-btn").click(function () {
|
||||
$(".hint-mask").addClass("show")
|
||||
})
|
||||
$(".form-clk").click(function(){
|
||||
$(".email").val(''),
|
||||
$(".fname").val(''),
|
||||
$(".lname").val(''),
|
||||
$(".school").val(''),
|
||||
$(".form-wrap").addClass("show")
|
||||
// $(".form-clk").click(function(){
|
||||
// $(".email").val(''),
|
||||
// $(".fname").val(''),
|
||||
// $(".lname").val(''),
|
||||
// $(".school").val(''),
|
||||
// $(".form-wrap").addClass("show")
|
||||
// })
|
||||
$(".form-clk").click(function(){
|
||||
$("#email").val('');
|
||||
$(".form-wrap3").addClass("show")
|
||||
})
|
||||
$(".form-clk2").click(function(){
|
||||
$("#emails").val(''),
|
||||
|
|
|
@ -1,6 +0,0 @@
|
|||
location / {
|
||||
if (!-e $request_filename) {
|
||||
rewrite ^(.*)$ /index.php?s=$1 last;
|
||||
break;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue