mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-04-05 17:38:01 +08:00
93 lines
2.7 KiB
JavaScript
93 lines
2.7 KiB
JavaScript
layui.config({
|
|
base: "/js/"
|
|
}).use(['form', 'layer'], function () {
|
|
var form = layui.form,
|
|
layer = parent.layer === undefined ? layui.layer : parent.layer,
|
|
$ = layui.jquery;
|
|
|
|
// Cloud Float...
|
|
var $main = $cloud = mainwidth = null;
|
|
var offset1 = 450;
|
|
var offset2 = 0;
|
|
var offsetbg = 0;
|
|
|
|
$(document).ready(
|
|
function () {
|
|
$main = $("#mainBody");
|
|
$body = $("body");
|
|
$cloud1 = $("#cloud1");
|
|
$cloud2 = $("#cloud2");
|
|
|
|
mainwidth = $main.outerWidth();
|
|
|
|
}
|
|
);
|
|
|
|
setInterval(function flutter() {
|
|
if (offset1 >= mainwidth) {
|
|
offset1 = -580;
|
|
}
|
|
|
|
if (offset2 >= mainwidth) {
|
|
offset2 = -580;
|
|
}
|
|
|
|
offset1 += 1.1;
|
|
offset2 += 1;
|
|
$cloud1.css("background-position", offset1 + "px 100px")
|
|
|
|
$cloud2.css("background-position", offset2 + "px 460px")
|
|
}, 70);
|
|
setInterval(function bg() {
|
|
if (offsetbg >= mainwidth) {
|
|
offsetbg = -580;
|
|
}
|
|
|
|
offsetbg += 0.9;
|
|
$body.css("background-position", -offsetbg + "px 0")
|
|
}, 90);
|
|
$(function () {
|
|
//得到焦点
|
|
$("#password").focus(function () {
|
|
$("#left_hand").animate({
|
|
left: "150",
|
|
top: " -38"
|
|
}, {
|
|
step: function () {
|
|
if (parseInt($("#left_hand").css("left")) > 140) {
|
|
$("#left_hand").attr("class", "left_hand");
|
|
}
|
|
}
|
|
}, 2000);
|
|
$("#right_hand").animate({
|
|
right: "-64",
|
|
top: "-38px"
|
|
}, {
|
|
step: function () {
|
|
if (parseInt($("#right_hand").css("right")) > -70) {
|
|
$("#right_hand").attr("class", "right_hand");
|
|
}
|
|
}
|
|
}, 2000);
|
|
});
|
|
//失去焦点
|
|
$("#password").blur(function () {
|
|
$("#left_hand").attr("class", "initial_left_hand");
|
|
$("#left_hand").attr("style", "left:100px;top:-12px;");
|
|
$("#right_hand").attr("class", "initial_right_hand");
|
|
$("#right_hand").attr("style", "right:-112px;top:-12px");
|
|
});
|
|
|
|
$('.loginbox').css({ 'position': 'absolute', 'left': ($(window).width() - 692) / 2 });
|
|
$(window).resize(function () {
|
|
$('.loginbox').css({ 'position': 'absolute', 'left': ($(window).width() - 692) / 2 });
|
|
})
|
|
});
|
|
|
|
//登录按钮事件
|
|
form.on("submit(login)", function (data) {
|
|
window.location.href = "/Login/LoginByDev";
|
|
return false;
|
|
})
|
|
})
|