最新赞助活动温馨提示:自愿赞助服务器费用,学生和没有工作的整站资源免费下载!
头像

jQuery+Background+Animation背景过渡插件

来源:http://www.erdangjiade.com/ 沐浴春风 2015-08-20 23:29浏览(1509)

本文演示了点击不同输入框,出现不同的背景色。

0、请不要问“在不在”之类的问题,有问题直接问!1、学生或暂时没有工作的童鞋,整站资源免费下载!2、¥9.9充值终身VIP会员,加我微信,826096331 拉你进VIP群学习!3、程序员加油,技术改变世界。在线 充值

jQuery+Background+Animation背景过渡插件
分类:其它特效 > jQuery插件 难易:初级
查看演示

加我微信,拉你进VIP群学习:

下载资源 下载积分: 30 积分

HTML

<label for="bir">Ad</label>
<input type="text" id="bir">
<label for="iki">Soyad</label>
<input type="text" id="iki">
<label for="uc">URL</label>
<input type="text" id="uc">
<div class='background'></div>

jQuery

$("#bir").focusin(function() {
    $('.background').css("background-color", "#ff9800");
});
$("#iki").focusin(function() {
    $('.background').css("background-color", "#03a9f4");
});
$("#uc").focusin(function() {
    $('.background').css("background-color", "#e91e63");
});
$("#bir, #iki, #uc").focusout(function() {
    $('.background').css("background-color", "");
});
声明:本文为原创文章,如需转载,请注明来源erdangjiade.com并保留原文链接:https://www.erdangjiade.com/js/305.html
评论0
头像

友情提示:垃圾评论一律封号 加我微信:826096331拉你进VIP群学习群

1 2