{"id":3132,"date":"2014-10-19T10:36:40","date_gmt":"2014-10-19T02:36:40","guid":{"rendered":"https:\/\/sdeno.com\/?p=3132"},"modified":"2016-07-08T18:24:02","modified_gmt":"2016-07-08T10:24:02","slug":"jquery%e5%8c%80%e5%8a%a0%e5%87%8f%e9%80%9f%e6%95%88%e6%9e%9ceasing-js","status":"publish","type":"post","link":"https:\/\/sdeno.com\/?p=3132","title":{"rendered":"jquery\u5300\u52a0\u51cf\u901f\u6548\u679ceasing.js"},"content":{"rendered":"<p>jquery \u5300\u52a0\u901f \u5300\u51cf\u901f \u52a0\u901f\u5ea6<\/p>\n<p>HTML\u7ed3\u6784<\/p>\n<pre style=\"color: #333333;\">&lt;div class=\"aa\"&gt;\u70b9\u51fb\u8fd9\u91cc\u67e5\u770b\u666e\u901a\u6548\u679c\u8ddf\u4e0b\u9762\u5bf9\u6bd4&lt;\/div&gt;\r\n&lt;div class=\"bb\"&gt;\u4f7f\u7528 easeInOutCirc \u7684\u7f13\u51b2\u8fc7\u6e21\u6548\u679c&lt;\/div&gt;\r\n&lt;div class=\"cc\"&gt;easeInQuint \u6548\u679c + \u56de\u8c03\u51fd\u6570&lt;\/div&gt;\r\n&lt;div class=\"dd\"&gt;hide() \u65b9\u6cd5\u7f13\u51b2\u6d88\u5931&lt;\/div&gt;<\/pre>\n<p>&nbsp;<\/p>\n<p>CSS\u4ee3\u7801<\/p>\n<pre style=\"color: #333333;\">.aa,.bb,.cc,.dd{width:300px;background:#ccc;padding:5px;margin-bottom:10px;cursor:pointer;}<\/pre>\n<p>JS<\/p>\n<pre style=\"color: #333333;\">$(function(){\r\n\t\t\r\n\t\r\n\t\t$('.aa').click(function(){\r\n\t\t\t$(this).animate({'width':'700'},1000).animate({'width':'300'},1000);\r\n\t\t\t$('.bb').animate({'width':'700'},{duration:1000,easing:'easeInOutCirc'}).animate({'width':'300'},{duration:1000,easing:'easeInOutCirc'});\r\n\t\t\t$('.cc').animate({'width':'700'},{duration:1000,easing:'easeInQuint'}).animate({'width':'300'},{duration:1000,easing:'easeInQuint',complete:function(){ alert('\u6ed1\u56de\u6765\u4e86'); }});\r\n\t\t\t$('.dd').hide({duration:1000,easing:'easeInQuint'}).show({duration:1000,easing:'easeInQuint'});\r\n\t\t});\r\n\t\t$('.bb').click(function(){\r\n\t\t\t$(this).animate({'width':'700'},{duration:1000,easing:'easeInOutCirc'}).animate({'width':'300'},{duration:1000,easing:'easeInOutCirc'});\r\n\t\t});\r\n\t\t$('.cc').click(function(){\r\n\t\t\t$(this).animate({'width':'700'},{duration:1000,easing:'easeInQuint'}).animate({'width':'300'},{duration:1000,easing:'easeInQuint',complete:function(){ alert('\u6ed1\u56de\u6765\u4e86'); }});\r\n\t\t});\r\n\t\t$('.dd').click(function(){\r\n\t\t\t$(this).hide({duration:1000,easing:'easeInQuint'}).show({duration:1000,easing:'easeInQuint'});\r\n\t\t});\r\n\t\r\n\t});<\/pre>\n<p>&nbsp;<\/p>\n<p><span style=\"color: #ff0000;\">\u6ce8\u610f<\/span><\/p>\n<pre>\/\/\u6b64\u63d2\u4ef6\u652f\u6301\u7b2c\u4e8c\u79cd\u5199\u6cd5\r\n$('div').animate({left:'200px'},'bounceinout');  \/\/\u4e0d\u652f\u6301\r\n\r\n$('div').animate({left:'200px'},{easing:'easeInOutBounce'});  \/\/\u652f\u6301<\/pre>\n<p>&nbsp;<\/p>\n<p>\u5206\u6790\u6b64\u63d2\u4ef6\uff1a<\/p>\n<pre>\/\/\u8981\u6269\u5c55jQuery\u7684\u901f\u5ea6\u6548\u679c\uff0c\u5176\u5b9ejQuery\u5bf9\u5916\u5df2\u7ecf\u63d0\u4f9b\u4e86\u4e00\u4e2a\u6269\u5c55\u63a5\u53e3,<span style=\"color: #ff0000;\">jQuery.easing<\/span>\r\n\r\njQuery.easing.<span style=\"color: #ff0000;\">easeOutBounce<\/span>=function (x, t, b, c, d) {  \/\/\u53c2\u6570\u662fjQuery\u5185\u7f6e\u53c2\u6570\uff0c\u5177\u4f53\u8981\u7ffb\u9605jQuery\u6e90\u7801\r\n  if ((t\/=d) &lt; (1\/2.75)) {\r\n    return c*(7.5625*t*t) + b;\r\n  } else if (t &lt; (2\/2.75)) {\r\n    return c*(7.5625*(t-=(1.5\/2.75))*t + .75) + b;\r\n  } else if (t &lt; (2.5\/2.75)) {\r\n    return c*(7.5625*(t-=(2.25\/2.75))*t + .9375) + b;\r\n  } else {\r\n    return c*(7.5625*(t-=(2.625\/2.75))*t + .984375) + b;\r\n  }\r\n}\r\n\r\n\r\n$('div').animate({left:'200px'},{easing:'<span style=\"color: #ff0000;\">easeOutBounce<\/span>'});\r\n\r\n<\/pre>\n<p>&nbsp;<\/p>\n<p><a href=\"https:\/\/sdeno.com\/easings\/\" target=\"_blank\">\u52a0\u901f\u5ea6\u56fe\u8868\uff1a\u00a0https:\/\/sdeno.com\/easings\/<\/a><\/p>\n<p><a href=\"https:\/\/sdeno.com\/wp-content\/uploads\/2014\/10\/jquery.easing.js.txt\">jquery.easing.js<\/a><br \/>\n<a href=\"https:\/\/sdeno.com\/wp-content\/uploads\/2014\/10\/jquery.easing.1.3.min_.js\">jquery.easing.1.3.min<\/a><\/p>\n<p><a href=\"https:\/\/sdeno.com\/wp-content\/uploads\/2014\/10\/jquery.easing.1.3.js\">jquery.easing.1.3<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>jquery \u5300\u52a0\u901f \u5300\u51cf\u901f \u52a0\u901f\u5ea6 HTML\u7ed3\u6784 &lt;div class=&#8221;aa&#8221;&gt;\u70b9\u51fb\u8fd9\u91cc\u67e5\u770b\u666e [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[11],"tags":[],"class_list":["post-3132","post","type-post","status-publish","format-standard","hentry","category-11"],"_links":{"self":[{"href":"https:\/\/sdeno.com\/index.php?rest_route=\/wp\/v2\/posts\/3132","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/sdeno.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/sdeno.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/sdeno.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/sdeno.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=3132"}],"version-history":[{"count":0,"href":"https:\/\/sdeno.com\/index.php?rest_route=\/wp\/v2\/posts\/3132\/revisions"}],"wp:attachment":[{"href":"https:\/\/sdeno.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=3132"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/sdeno.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=3132"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/sdeno.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=3132"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}