extras.js
上传用户:kimgenplus
上传日期:2016-06-05
资源大小:20877k
文件大小:3k
源码类别:

OA系统

开发平台:

Java

  1. /*
  2. Copyright (c) 2004-2006, The Dojo Foundation
  3. All Rights Reserved.
  4. Licensed under the Academic Free License version 2.1 or above OR the
  5. modified BSD license. For more information on Dojo licensing, see:
  6. http://dojotoolkit.org/community/licensing.shtml
  7. */
  8. dojo.provide("dojo.lfx.extras");
  9. dojo.require("dojo.lfx.html");
  10. dojo.require("dojo.lfx.Animation");
  11. dojo.lfx.html.fadeWipeIn = function (nodes, duration, easing, callback) {
  12. nodes = dojo.lfx.html._byId(nodes);
  13. var anim = dojo.lfx.combine(dojo.lfx.fadeIn(nodes, duration, easing), dojo.lfx.wipeIn(nodes, duration, easing));
  14. if (callback) {
  15. anim.connect("onEnd", function () {
  16. callback(nodes, anim);
  17. });
  18. }
  19. return anim;
  20. };
  21. dojo.lfx.html.fadeWipeOut = function (nodes, duration, easing, callback) {
  22. nodes = dojo.lfx.html._byId(nodes);
  23. var anim = dojo.lfx.combine(dojo.lfx.fadeOut(nodes, duration, easing), dojo.lfx.wipeOut(nodes, duration, easing));
  24. if (callback) {
  25. anim.connect("onEnd", function () {
  26. callback(nodes, anim);
  27. });
  28. }
  29. return anim;
  30. };
  31. dojo.lfx.html.scale = function (nodes, percentage, scaleContent, fromCenter, duration, easing, callback) {
  32. nodes = dojo.lfx.html._byId(nodes);
  33. var anims = [];
  34. dojo.lang.forEach(nodes, function (node) {
  35. var outer = dojo.html.getMarginBox(node);
  36. var actualPct = percentage / 100;
  37. var props = [{property:"width", start:outer.width, end:outer.width * actualPct}, {property:"height", start:outer.height, end:outer.height * actualPct}];
  38. if (scaleContent) {
  39. var fontSize = dojo.html.getStyle(node, "font-size");
  40. var fontSizeType = null;
  41. if (!fontSize) {
  42. fontSize = parseFloat("100%");
  43. fontSizeType = "%";
  44. } else {
  45. dojo.lang.some(["em", "px", "%"], function (item, index, arr) {
  46. if (fontSize.indexOf(item) > 0) {
  47. fontSize = parseFloat(fontSize);
  48. fontSizeType = item;
  49. return true;
  50. }
  51. });
  52. }
  53. props.push({property:"font-size", start:fontSize, end:fontSize * actualPct, units:fontSizeType});
  54. }
  55. if (fromCenter) {
  56. var positioning = dojo.html.getStyle(node, "position");
  57. var originalTop = node.offsetTop;
  58. var originalLeft = node.offsetLeft;
  59. var endTop = ((outer.height * actualPct) - outer.height) / 2;
  60. var endLeft = ((outer.width * actualPct) - outer.width) / 2;
  61. props.push({property:"top", start:originalTop, end:(positioning == "absolute" ? originalTop - endTop : (-1 * endTop))});
  62. props.push({property:"left", start:originalLeft, end:(positioning == "absolute" ? originalLeft - endLeft : (-1 * endLeft))});
  63. }
  64. var anim = dojo.lfx.propertyAnimation(node, props, duration, easing);
  65. if (callback) {
  66. anim.connect("onEnd", function () {
  67. callback(node, anim);
  68. });
  69. }
  70. anims.push(anim);
  71. });
  72. return dojo.lfx.combine(anims);
  73. };
  74. dojo.lang.mixin(dojo.lfx, dojo.lfx.html);