您当前的位置: 首页 > 前端教程 > JS教程 > jQuery实现选择商品飞入文本框的动画效果

jQuery实现选择商品飞入文本框的动画效果

作者:xiaoxiao 来源:未知 发布时间: 2014-07-30 10:59 点击:
Html代码如下所示: ! DOCTYPE html PUBLIC -//W3C//DTDXHTML1.0Transitional//EN http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd html xmlns =http://www.w3.org/1999/xhtml head title / title script src =Scripts/jquery-1.8.0.min.js type =text/javas

jQuery实现选择商品飞入文本框的动画效果

  Html代码如下所示:

  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

  <html xmlns="http://www.w3.org/1999/xhtml">

  <head>

     <title></title>

     <script src="Scripts/jquery-1.8.0.min.js" type="text/javascript"></script>

     <script>

         $(function() {

             initProListClick();

         });

         function initProListClick() {

             var brandUlObj = $('#brandListForOperate li');

             brandUlObj.unbind('click').on('click', function () {

                 var thisLiObj = $(this);

                 //获取商品的值和名称

                 var thisProValue = thisLiObj.find('input').val(),

                     thisProName = thisLiObj.find('.brand-text').text();

                 //调用动画效果方法

                 moveProEffect(thisLiObj, thisProValue, thisProName);

                 brandUlObj.find('input').attr({ 'checked': false });

                 brandUlObj.not(thisLiObj).removeClass('brand-selected');

                 if (thisLiObj.hasClass('brand-selected')) {

                     thisLiObj.find('input').attr({ 'checked': true });

                     //                   thisLiObj.removeClass('brand-selected');

                     //                   thisLiObj.find('input').attr({'checked':false});

                 } else {

                     thisLiObj.addClass('brand-selected');

                     thisLiObj.find('input').attr({ 'checked': true });

                 }

             });

         }

         //定义选择商品一共飞入的效果

         function moveProEffect(obj, brandVal, brandName) {

             //获取每一个LI标签的left top距离

             var divTop = $(obj).offset().top;

             var divLeft = $(obj).offset().left;

             //定义移动效果的div,并将点击的LI中的html内容放入此div中

             var thisEffectObj = $('#proEffectPanel');

             thisEffectObj.html(obj.html()).find('input').attr({ "checked": true });

             //初始化定义移动效果的div样式

             $(thisEffectObj).css({ "position": "static", "display": "none", "z-index": "auto", "left": "auto", "top": "auto", "opacity": "1", "border-radius": "0px" });

             //移动过程中div的样式

             $(thisEffectObj).css({ "position": "absolute", "display": "block", "z-index": "500", "left": divLeft + "px", "top": divTop + "px", "border-radius": "4px" });

             $(thisEffectObj).animate({

                 "left": ($("#txtProName").offset().left - $("#txtProName").width()+165) + "px",

                 "top": ($(document).scrollTop()) + "px",

                 "width": "190px",

                 "height": "30px"

             }, 500, function () {

                 $(thisEffectObj).animate({

                     "left": ($("#txtProName").offset().left -7) + "px",

                     "top": ($("#txtProName").offset().top-5) + "px"

                 }, 500, function () {

                     $('#txtProName').val(brandName);

                 }).fadeTo(0, 0.1).hide(0);

             });

         }

     </script>

  </head>

  <body>

     <style>

         html,body{font-size: 12px;color: #696969;font-family: 'Microsoft YaHei';}

         .txt-main { height: 30px; line-height: 30px; border: 1px solid #c3c3c3; border-radius: 4px; padding: 0 4px; width: 180px; background: #fff url(image/form/form-input-txt-bg.png) repeat-x; }

         .txt-main:focus { color: #2a6894; border-color: #66afe9; outline: 0; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); }

         .pro-list-panel{ width: 330px;overflow: hidden;border: 1px solid #f3f3f3;padding-bottom: 10px;float: left;margin-left: 10px;}

         .pro-list-main{list-style-type: none;overflow: hidden;padding: 0;margin: 0;}

         .pro-list-main li, #proEffectPanel { border: 1px solid #95b8e7; width: 147px; overflow: hidden; float: left; margin-left: 5px; margin-top: 5px; height: 30px; line-height: 30px; }

         .pro-list-main li div, #proEffectPanel div { float: left; height: 30px; line-height: 30px; }

         .pro-list-main li div.brand-chk, #proEffectPanel div.brand-chk { width: 12px; padding: 5px 6px 0 5px; }

         .pro-list-main li div.brand-text, #proEffectPanel div.brand-text { width: 124px; }

         .pro-list-main li:hover, .pro-list-main li.brand-selected, #proEffectPanel { background-color: #ceebf4; }

     </style>

     <div class="pro-list-panel">

         <h2> 选择你的商品:</h2>

         <ul class="pro-list-main" id="brandListForOperate">

             <li title="康师傅">

                 <div class="brand-chk"><input type="checkbox" id="Checkbox1" value="1" /></div>

                 <div class="brand-text">康师傅</div>

             </li>

             <li title="鸿星尔克">

                 <div class="brand-chk"><input type="checkbox" id="Checkbox2" value="2" /></div>

                 <div class="brand-text">鸿星尔克</div>

             </li>

             <li title="程辉">

                 <div class="brand-chk"><input type="checkbox" id="Checkbox3" value="2" /></div>

                 <div class="brand-text">程辉</div>

             </li>

             <li title="士力架">

                 <div class="brand-chk"><input type="checkbox" id="Checkbox4" value="2" /></div>

                 <div class="brand-text">士力架</div>

             </li>

             <li title="三笑">

                 <div class="brand-chk"><input type="checkbox" id="Checkbox5" value="2" /></div>

                 <div class="brand-text">三笑</div>

             </li>

             <li title="椰牛">

                 <div class="brand-chk"><input type="checkbox" id="Checkbox6" value="2" /></div>

                 <div class="brand-text">椰牛</div>

             </li>

             <li title="飞科">

                 <div class="brand-chk"><input type="checkbox" id="Checkbox7" value="2" /></div>

                 <div class="brand-text">飞科</div>

             </li>

         </ul>

         <div id="proEffectPanel" style="display: none;">

         </div>

     </div>

     <div class="pro-list-panel">

         <h2> 你选择的商品·:</h2>

             <input type="text" name="txtProName" value="" id="txtProName" class="txt-main" />

     </div>

  </body>

  </html>

  效果如下所示:
分享到:
本文"jQuery实现选择商品飞入文本框的动画效果"由远航站长收集整理而来,仅供大家学习与参考使用。更多网站制作教程尽在远航站长站。
顶一下
(1)
100%
踩一下
(0)
0%
[点击 次] [返回上一页] [打印]
发表评论
请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
评价:
表情:
用户名: 密码: 验证码:
关于本站 - 联系我们 - 网站声明 - 友情连接- 网站地图 - 站点地图 - 返回顶部
Copyright © 2007-2013 www.yhzhan.com(远航站长). All Rights Reserved .
远航站长:为中小站长提供最佳的学习与交流平台,提供网页制作与网站编程等各类网站制作教程.
官方QQ:445490277 网站群:26680406 网站备案号:豫ICP备07500620号-4