使用方法
function copyToClipboard() {
let textarea = $("textarea");
textarea.select();
document.execCommand("copy");
}
function styleShadow() {
let props = new Array(
$("input[name='horizontal']").val(),
$("input[name='vertical']").val(),
$("input[name='blur']").val(),
$("input[name='spread']").val(),
$("input[name='color']").val()
);
$("div.block").css("box-shadow",
props[0] + "px " +
props[1] + "px " +
props[2] + "px " +
props[3] + "px" +
props[4]
);
let propertiesString = props[0] +
"px " + props[1] + "px " + props[2] + "px " +
props[3] + "px " + props[4] + ";";
$(".css-output > textarea").val("box-shadow: " + propertiesString +
"\n -webkit-box-shadow: " + propertiesString +
"\n -moz-box-shadow: " + propertiesString);
}
$(function () {
styleShadow();
$("input[type='range']").on("input", function () {
let rangeValue = $(this).val();
let parent = $(this).parents(".property");
parent.find("input[type='number']").val(rangeValue);
styleShadow();
})
$("input[type='number']").on("input", function () {
let numberValue = $(this).val();
let parent = $(this).parents(".property");
parent.find(".bottom > input").val(numberValue);
styleShadow();
})
$("input[type='color']").on("input", function () {
styleShadow();
})
$("button.load-button").on("click", function () {
$(this).addClass("scaled").hide(150);
setTimeout(function () {
$(".lds-ring").css("display", "inline-block");
}, 400);
setTimeout(function () {
$(".lds-ring").css("display", "none");
$("textarea").css("display", "block");
$(".copy-button").css("display", "block");
}, 2200);
})
$("button.copy-button").on("click", function () {
copyToClipboard();
$("span.tooltip").css("display", "block").css("opacity", "1");
setTimeout(function () {
$("span.tooltip").animate({
opacity: 0
}, 600).hide(600);
}, 2200)
})
})
站长提示:
1. 苦力吧素材官方QQ群:
950875342
2. 平台上所有素材资源,需注册登录会员方能正常下载。
3. 会员用户积极反馈网站、素材资源BUG或错误问题,每次奖励
2K币。
4. PHP源码类素材,如需协助安装调试,或你有二次开发需求,可联系苦力吧客服。
5. 付费素材资源,需充值后方能下载,如有任何疑问可直接联系苦力吧客服