├── _blank.htm ├── about.htm ├── animate.css ├── css ├── _gaga_temp │ ├── sprite │ │ └── style.png │ └── style.css ├── colorpicker.css ├── dcmegamenu.css ├── popup.import.css ├── reset.css ├── skins │ ├── black.css │ ├── blue.css │ ├── green.css │ ├── grey.css │ ├── images │ │ ├── arrow.png │ │ ├── arrow_off.png │ │ ├── arrow_on.png │ │ ├── bg_black.png │ │ ├── bg_blue.png │ │ ├── bg_green.png │ │ ├── bg_grey.png │ │ ├── bg_light_blue.png │ │ ├── bg_mega_hdr.png │ │ ├── bg_mega_hdr_full.png │ │ ├── bg_mega_hdr_on.png │ │ ├── bg_orange.png │ │ ├── bg_red.png │ │ ├── bg_sub.png │ │ ├── bg_sub_left.png │ │ └── bg_white.png │ ├── light_blue.css │ ├── orange.css │ ├── red.css │ └── white.css ├── slice │ ├── control_loop.png │ ├── control_loop_hover.png │ ├── control_pause.png │ ├── control_pause_hover.png │ ├── control_play.png │ ├── control_play_hover.png │ ├── control_stop.png │ ├── control_stop_hover.png │ ├── element_circle.png │ ├── element_circle_hover.png │ ├── element_image.png │ ├── element_image_hover.png │ ├── element_rect.png │ ├── element_rect_hover.png │ ├── element_select.png │ ├── element_select_hover.png │ ├── element_text.png │ ├── element_text_hover.png │ ├── element_video.png │ ├── frame_close.png │ ├── ico_add_layout.png │ ├── ico_anchor.png │ ├── ico_anchor_hover.png │ ├── ico_back.png │ ├── ico_bad.png │ ├── ico_del.png │ ├── ico_dot.png │ ├── ico_eye.png │ ├── ico_good.png │ ├── ico_lock.png │ ├── ico_needle.png │ ├── ico_preview.png │ ├── ico_trash.png │ ├── ico_trash2.png │ ├── ico_trash_32.png │ ├── ico_x.png │ ├── ico_x_h.png │ ├── ico_zoom.png │ ├── ico_zoom_bar.png │ ├── ico_zoom_hover.png │ ├── ico_zoom_in.png │ ├── ico_zoom_out.png │ ├── layer_current.png │ ├── layer_hover.png │ ├── layout_bg.png │ ├── layout_bg_h.png │ ├── next.png │ ├── search.png │ ├── slide_move.png │ └── tip_drag_file.png ├── sprite │ └── style.png ├── style.css └── style.source.css ├── demo.htm ├── effect.txt ├── help.htm ├── images ├── Thumbs.db ├── blank.gif ├── colorpicker_background.png ├── colorpicker_hex.png ├── colorpicker_hsb_b.png ├── colorpicker_hsb_h.png ├── colorpicker_hsb_s.png ├── colorpicker_indic.gif ├── colorpicker_overlay.png ├── colorpicker_rgb_b.png ├── colorpicker_rgb_g.png ├── colorpicker_rgb_r.png ├── colorpicker_select.gif ├── colorpicker_submit.png ├── custom_background.png ├── custom_hex.png ├── custom_hsb_b.png ├── custom_hsb_h.png ├── custom_hsb_s.png ├── custom_indic.gif ├── custom_rgb_b.png ├── custom_rgb_g.png ├── custom_rgb_r.png ├── custom_submit.png ├── select.png ├── select2.png └── slider.png ├── img ├── 2.ani ├── 2.ico ├── 460.jpg ├── CROSS.CUR ├── NWSE.ANI ├── WE.ANI ├── canvas_bg.png ├── ico_trash_32.png ├── lb.png ├── loading.gif ├── loading_16.gif ├── lt.png ├── pos.ico ├── qz_msgbox_layer.png ├── rb.png ├── resize.ico ├── rotate.ico ├── rt.png ├── skew.ico ├── tl_bg.png └── tl_bg2.png ├── index.htm ├── js ├── ZeroClipboard.js ├── ZeroClipboard.swf ├── colorpicker.js ├── drag.js ├── functions.js ├── jquery-1.6.4.min.js ├── jquery.dcmegamenu.1.3.3.js ├── jquery.hoverIntent.minified.js ├── jquery.masonry.min.js ├── jquery.select-1.3.6.js ├── jquery.tinyscrollbar.js ├── jscroll.js ├── main.js ├── main2.js ├── project.js ├── tab.lib.js └── utils.js ├── project_add.htm ├── project_list.htm ├── result.htm ├── server ├── .htaccess ├── export │ ├── 0 │ │ └── index.htm │ ├── 1 │ │ └── index.htm │ ├── 3 │ │ └── index.htm │ ├── index.htm │ └── project_test │ │ └── index.htm ├── image.php ├── include │ ├── conn.php │ └── function.php ├── index.php ├── project.php ├── project │ ├── 0 │ │ ├── _thumb_header_bg_top.jpg │ │ ├── coin_29x25.png │ │ ├── coin_40x42.png │ │ ├── coin_50x43.png │ │ ├── coin_53x67.png │ │ ├── coin_69x70.png │ │ ├── css.txt │ │ ├── header_bg_top.jpg │ │ ├── html.txt │ │ ├── index.htm │ │ ├── list.json │ │ └── project.json │ ├── 1 │ │ ├── _thumb_custom_background.png │ │ ├── _thumb_light.png │ │ ├── _thumb_logo_py1.png │ │ ├── _thumb_rule.png │ │ ├── colorpicker_rgb_g.png │ │ ├── colorpicker_rgb_r.png │ │ ├── colorpicker_select.gif │ │ ├── colorpicker_submit.png │ │ ├── css.txt │ │ ├── custom_background.png │ │ ├── custom_hex.png │ │ ├── html.txt │ │ ├── index.htm │ │ ├── light.png │ │ ├── list.json │ │ ├── logo_py1.png │ │ ├── logo_qz.png │ │ ├── project.json │ │ └── rule.png │ ├── 2 │ │ ├── 2157026_103313663117_2.jpg │ │ ├── New.jpg │ │ ├── _thumb_2157026_103313663117_2.jpg │ │ ├── _thumb_New.jpg │ │ ├── cooperate_csdn.jpg │ │ ├── css.txt │ │ ├── html.txt │ │ ├── index.htm │ │ ├── list.json │ │ └── project.json │ ├── 3 │ │ ├── _thumb_schedule.jpg │ │ ├── _thumb_teachers_list.jpg │ │ ├── a_teachers_list_star.png │ │ ├── content-close-24.png │ │ ├── css.txt │ │ ├── html.txt │ │ ├── index.htm │ │ ├── list.json │ │ ├── project.json │ │ ├── schedule.jpg │ │ └── teachers_list.jpg │ ├── 4 │ │ ├── _thumb_header1.png │ │ ├── _thumb_light.png │ │ ├── css.txt │ │ ├── header1.png │ │ ├── html.txt │ │ ├── index.htm │ │ ├── light.png │ │ ├── list.json │ │ └── project.json │ ├── 5 │ │ ├── _thumb_share_btn.jpg │ │ ├── css.txt │ │ ├── html.txt │ │ ├── index.htm │ │ ├── list.json │ │ ├── project.json │ │ └── share_btn.jpg │ ├── 6 │ │ ├── css.txt │ │ ├── html.txt │ │ ├── index.htm │ │ ├── list.json │ │ └── project.json │ ├── 7 │ │ ├── _thumb_a_slogan.png │ │ ├── _thumb_header.jpg │ │ ├── _thumb_header1.jpg │ │ ├── a_slogan.png │ │ ├── css.txt │ │ ├── header.jpg │ │ ├── header1.jpg │ │ ├── html.txt │ │ ├── index.htm │ │ ├── list.json │ │ └── project.json │ ├── 8 │ │ ├── _thumb_a_slogan.png │ │ ├── _thumb_canvas.png │ │ ├── _thumb_header2.jpg │ │ ├── _thumb_light.png │ │ ├── a_slogan.png │ │ ├── canvas.png │ │ ├── css.txt │ │ ├── header2.jpg │ │ ├── html.txt │ │ ├── index.htm │ │ ├── light.png │ │ ├── list.json │ │ └── project.json │ ├── 9 │ │ ├── _thumb_a_slogan.png │ │ ├── _thumb_canvas.png │ │ ├── _thumb_header2.jpg │ │ ├── _thumb_light.png │ │ ├── a_slogan.png │ │ ├── canvas.png │ │ ├── css.txt │ │ ├── header2.jpg │ │ ├── html.txt │ │ ├── index.htm │ │ ├── light.png │ │ ├── list.json │ │ └── project.json │ ├── 10 │ │ └── project.json │ ├── 11 │ │ ├── css.txt │ │ ├── html.txt │ │ ├── index.htm │ │ └── project.json │ ├── 12 │ │ ├── css.txt │ │ ├── html.txt │ │ ├── index.htm │ │ └── project.json │ ├── 13 │ │ └── project.json │ ├── 14 │ │ ├── css.txt │ │ ├── html.txt │ │ ├── index.htm │ │ └── project.json │ ├── 15 │ │ ├── 20120326090812101.jpg │ │ ├── _thumb_20120326090812101.jpg │ │ ├── _thumb_jze.jpg │ │ ├── jze.jpg │ │ ├── list.json │ │ └── project.json │ ├── 16 │ │ ├── 20120326090812101.jpg │ │ ├── _thumb_20120326090812101.jpg │ │ ├── _thumb_jze.jpg │ │ ├── jze.jpg │ │ ├── list.json │ │ └── project.json │ ├── 17 │ │ ├── _thumb_icon_152x153.jpg │ │ ├── icon_152x153.jpg │ │ ├── icon_50x50.jpg │ │ ├── list.json │ │ └── project.json │ ├── 18 │ │ ├── 20120326090812101.jpg │ │ ├── _thumb_20120326090812101.jpg │ │ ├── _thumb_jze.jpg │ │ ├── jze.jpg │ │ ├── list.json │ │ └── project.json │ ├── 19 │ │ └── project.json │ ├── 20 │ │ ├── _thumb_a_light.png │ │ ├── _thumb_header_a.png │ │ ├── a_light.png │ │ ├── a_star.png │ │ ├── a_star_b.png │ │ ├── css.txt │ │ ├── header_a.png │ │ ├── html.txt │ │ ├── index.htm │ │ ├── list.json │ │ └── project.json │ ├── 21 │ │ ├── _thumb_clockface.jpg │ │ ├── clockface.jpg │ │ ├── css.txt │ │ ├── hourhand.png │ │ ├── html.txt │ │ ├── index.htm │ │ ├── list.json │ │ ├── minhand.png │ │ ├── project.json │ │ └── sechand.png │ ├── 22 │ │ ├── _thumb_background.png │ │ ├── _thumb_foreground.png │ │ ├── _thumb_midground.png │ │ ├── background.png │ │ ├── css.txt │ │ ├── foreground.png │ │ ├── html.txt │ │ ├── index.htm │ │ ├── list.json │ │ ├── midground.png │ │ └── project.json │ ├── 23 │ │ ├── _thumb_coke-can.png │ │ ├── _thumb_coke-label.jpg │ │ ├── coke-can.png │ │ ├── coke-label.jpg │ │ ├── css.txt │ │ ├── html.txt │ │ ├── index.htm │ │ ├── list.json │ │ └── project.json │ ├── 24 │ │ ├── _thumb_fog.png │ │ ├── _thumb_glow.png │ │ ├── _thumb_light.png │ │ ├── _thumb_stars-large.png │ │ ├── _thumb_stars-small.png │ │ ├── css.txt │ │ ├── fog.png │ │ ├── glow.png │ │ ├── html.txt │ │ ├── index.htm │ │ ├── light.png │ │ ├── list.json │ │ ├── project.json │ │ ├── stars-large.png │ │ └── stars-small.png │ ├── 25 │ │ ├── _thumb_clockface.jpg │ │ ├── clockface.jpg │ │ ├── css.txt │ │ ├── hourhand.png │ │ ├── html.txt │ │ ├── index.htm │ │ ├── list.json │ │ ├── minhand.png │ │ ├── project.json │ │ └── sechand.png │ ├── 26 │ │ ├── css.txt │ │ ├── html.txt │ │ ├── index.htm │ │ ├── list.json │ │ └── project.json │ ├── 27 │ │ ├── _thumb_a2.png │ │ ├── _thumb_a3.png │ │ ├── _thumb_a4.png │ │ ├── _thumb_a_bg.jpg │ │ ├── a1.png │ │ ├── a2.png │ │ ├── a3.png │ │ ├── a4.png │ │ ├── a5.png │ │ ├── a_bg.jpg │ │ ├── css.txt │ │ ├── html.txt │ │ ├── index.htm │ │ ├── list.json │ │ └── project.json │ ├── 28 │ │ ├── 1111.jpg │ │ ├── _thumb_1111.jpg │ │ ├── _thumb_children_star.png │ │ ├── _thumb_cloud.png │ │ ├── _thumb_title.png │ │ ├── _thumb_閸忣厺绔撮崕璺仮閼哄倹娓剁紒鍫㈩焾bg_04.jpg │ │ ├── btn_share_done.png │ │ ├── children_star.png │ │ ├── cloud.png │ │ ├── css.txt │ │ ├── html.txt │ │ ├── index.htm │ │ ├── list.json │ │ ├── project.json │ │ ├── title.png │ │ └── 閸忣厺绔撮崕璺仮閼哄倹娓剁紒鍫㈩焾bg_04.jpg │ ├── 29 │ │ ├── 111.jpg │ │ ├── _thumb_111.jpg │ │ ├── _thumb_children_star.png │ │ ├── _thumb_cloud.png │ │ ├── _thumb_title.png │ │ ├── children_star.png │ │ ├── cloud.png │ │ ├── css.txt │ │ ├── html.txt │ │ ├── index.htm │ │ ├── list.json │ │ ├── project.json │ │ └── title.png │ ├── 30 │ │ ├── 123是的.jpg │ │ ├── asd_123.jpg │ │ ├── list.json │ │ └── project.json │ ├── project_list.json │ └── templet.htm └── project1.php ├── skill.txt ├── slice ├── control_loop.png ├── control_loop_hover.png ├── control_pause.png ├── control_pause_hover.png ├── control_play.png ├── control_play_hover.png ├── control_stop.png ├── control_stop_hover.png ├── element_circle.png ├── element_circle_hover.png ├── element_image.png ├── element_image_hover.png ├── element_rect.png ├── element_rect_hover.png ├── element_select.png ├── element_select_hover.png ├── element_text.png ├── element_text_hover.png ├── element_video.png ├── frame_close.png ├── ico_anchor.png ├── ico_anchor_hover.png ├── ico_dot.png ├── ico_eye.png ├── ico_lock.png ├── ico_needle.png ├── ico_trash_32.png ├── ico_zoom.png ├── ico_zoom_bar.png ├── ico_zoom_hover.png ├── ico_zoom_in.png ├── ico_zoom_out.png ├── layer_current.png ├── layer_hover.png ├── slide_move.png └── tip_drag_file.png ├── test ├── coin_29x25.png ├── coin_40x42.png ├── coin_50x43.png ├── coin_53x67.png ├── coin_69x70.png └── header_bg_top.jpg ├── test2 ├── clockface.jpg ├── hourhand.png ├── minhand.png └── sechand.png └── 素材 ├── guide-final.$5990.png ├── tips.psd ├── 未命名-1.png ├── 未命名-2(1).png └── 未命名-2.psd /_blank.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /about.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | iAnimation 6 | 7 | 8 | 9 | 10 | 11 | 12 | 21 | 22 | 23 |
24 |
25 |

关于

26 | 27 |
28 |
29 |
30 |

iAnimator,html5与css3打造动画效果

31 |

使用过程中有任何不适请联系 kundyzhang jeannewu 反馈,谢谢!

32 |

===================华丽的分割线======================

33 |

界面参考Sencha Animator

34 |

特效来自http://daneden.me/animate

35 |
36 |
37 | 38 | 39 |
40 | 41 | 42 | 43 | 44 | 45 | 58 | 59 | 60 | -------------------------------------------------------------------------------- /css/_gaga_temp/sprite/style.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/css/_gaga_temp/sprite/style.png -------------------------------------------------------------------------------- /css/dcmegamenu.css: -------------------------------------------------------------------------------- 1 | /* Page */ 2 | body,html,div,blockquote,img,label,p,h1,h2,h3,h4,h5,h6,pre,ul,ol,li,dl,dt,dd,form,a,fieldset,input,th,td{border:0;outline:none;margin:0;padding:0;} 3 | ul{list-style:none;} 4 | 5 | body {font: normal 13px Arial, sans-serif;} 6 | h2 {font: normal 26px Arial, sans-serif; padding: 20px 0; margin: 0 0 30px 0;} 7 | .wrap {width: 960px; margin: 0 auto;} 8 | .demo-container {padding: 20px 0;} 9 | .demo-container h4 {font-size: 14px; margin: 0 0 5px 0;} 10 | 11 | /* Mega Menu Styles */ 12 | .mega-menu ul, .mega-menu ul li {list-style: none;} 13 | .mega-menu ul {position: relative; padding: 0; margin: 0;} 14 | .mega-menu ul li ul {display: none;} 15 | .mega-menu .sub {display: none;} 16 | .mega-menu .sub ul {display: block;} 17 | 18 | #mega-menu-1 { 19 | font: normal 13px Arial, sans-serif; 20 | list-style: none; 21 | position: relative; 22 | padding: 0; 23 | margin: 0; 24 | } 25 | #mega-menu-1 .sub ul { 26 | display: block; 27 | } 28 | #mega-menu-1 { 29 | background: #222; 30 | width: 100%; 31 | height: 40px; 32 | position: relative; 33 | } 34 | #mega-menu-1 li { 35 | float: left; 36 | margin: 0; 37 | padding: 0; 38 | font-weight: bold; 39 | } 40 | #mega-menu-1 li a { 41 | float: left; 42 | display: block; 43 | color: #fff; 44 | padding: 12px 25px; 45 | background: #222; 46 | text-decoration: none; 47 | } 48 | #mega-menu-1 li.mega-hover a, #mega-menu-1 li.mega-hover a:hover { 49 | background: #CCC; 50 | color: #000; 51 | } 52 | #mega-menu-1 li a:hover { 53 | background: #999; 54 | color: #000; 55 | } 56 | #mega-menu-1 li .sub-container { 57 | position: absolute; 58 | } 59 | #mega-menu-1 li .sub { 60 | background: #efefef; 61 | padding: 15px; 62 | border: 1px solid #ccc; 63 | } 64 | #mega-menu-1 li .sub .row { 65 | width: 100%; 66 | overflow: hidden; 67 | clear: both; 68 | } 69 | #mega-menu-1 li .sub li { 70 | list-style: none; 71 | float: none; 72 | width: 170px; 73 | font-size: 1em; 74 | font-weight: normal; 75 | } 76 | #mega-menu-1 li .sub li.mega-hdr { 77 | margin: 0 10px 10px 0; 78 | float: left; 79 | } 80 | #mega-menu-1 li .sub li.mega-hdr.last { 81 | margin-right: 0; 82 | } 83 | #mega-menu-1 li .sub a { 84 | background: none; 85 | color: #111; 86 | padding: 7px 10px; 87 | display: block; 88 | float: none; 89 | font-size: 0.9em; 90 | } 91 | #mega-menu-1 li .sub li.mega-hdr a.mega-hdr-a { 92 | padding: 5px 15px; 93 | margin-bottom: 5px; 94 | background: #6B6B6B; 95 | text-transform: uppercase; 96 | font-weight: bold; 97 | color: #fff; 98 | } 99 | #mega-menu-1 li .sub li.mega-hdr a.mega-hdr-a:hover { 100 | color: #000; 101 | } 102 | #mega-menu-1 .sub li.mega-hdr li a { 103 | padding: 4px 5px; 104 | font-weight: normal; 105 | } 106 | #mega-menu-1 .sub li.mega-hdr li a:hover { 107 | color: #a32403; 108 | background: #efefef; 109 | } 110 | #mega-menu-1 .sub ul li { 111 | padding-right: 0; 112 | } 113 | #mega-menu-1 li .sub-container.non-mega .sub { 114 | padding: 10px; 115 | } 116 | #mega-menu-1 li .sub-container.non-mega li { 117 | padding: 0; 118 | width: 190px; 119 | margin: 0; 120 | } 121 | #mega-menu-1 li .sub-container.non-mega li a { 122 | padding: 7px 5px 7px 22px; 123 | } 124 | #mega-menu-1 li .sub-container.non-mega li a:hover { 125 | color: #a32403; 126 | background: #efefef; 127 | } -------------------------------------------------------------------------------- /css/reset.css: -------------------------------------------------------------------------------- 1 | 2 | #CssGaga{background-image:none} 3 | 4 | html {font-size: 62.5%;font-family: Tahoma;} 5 | body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input,button, textarea, p, blockquote, th, td, hr {margin: 0;padding: 0;} 6 | body{line-height:1.333;font-size:12px;font-size:1.2rem;} 7 | h1, h2, h3, h4, h5, h6{font-size:100%} 8 | input, textarea, select,button{font-size: 12px;font-weight: normal;} 9 | input[type="button"],input[type="submit"], select,button{cursor:pointer;} 10 | table {border-collapse: collapse;border-spacing: 0;} 11 | address, caption, cite, code, dfn, em, th, var {font-style: normal;font-weight: normal;} 12 | li {list-style: none;} 13 | caption, th {text-align: left;} 14 | q:before, q:after {content: '';} 15 | abbr, acronym {border: 0;font-variant: normal;} 16 | sup {vertical-align: text-top;} 17 | sub {vertical-align: text-bottom;} 18 | fieldset, img,a img, iframe {border-width:0;border-style:none;} 19 | iframe{overflow:hidden;} 20 | img{-ms-interpolation-mode: bicubic;} 21 | textarea{overflow-y:auto;} 22 | legend {color: #000;} 23 | a:link,a:visited {text-decoration: none;} 24 | a{ cursor:pointer;} 25 | 26 | hr{height:0} 27 | label{cursor:pointer} 28 | 29 | .os_winXp{font-family:Tahoma;} 30 | .os_mac{font-family:"Helvetica Neue",Helvetica,"Hiragino Sans GB",Arial,sans-serif;} 31 | .os_vista, 32 | .os_win7{font-family:"Microsoft Yahei",Tahoma} -------------------------------------------------------------------------------- /css/skins/black.css: -------------------------------------------------------------------------------- 1 | .mega-menu ul, .mega-menu ul li {list-style: none;} 2 | .mega-menu ul {position: relative; padding: 0; margin: 0;} 3 | .mega-menu ul li ul {display: none;} 4 | .mega-menu .sub {display: none;} 5 | .mega-menu .sub ul {display: block;} 6 | 7 | .black {font: normal 13px Arial, sans-serif; line-height: 16px;} 8 | .black ul.mega-menu, .black ul.mega-menu, .black ul.mega-menu li {margin: 0; padding: 0; border: none;} 9 | .black ul.mega-menu {background: #222 url(images/bg_black.png) repeat-x 0 -80px; width: 100%; height: 40px; border-right: 1px solid #1B1B1B; border-left: 1px solid #1B1B1B; position: relative;} 10 | .black ul.mega-menu li {float: left; margin: 0; padding: 0; font-size: 13px; font-weight: bold;} 11 | .black ul.mega-menu li a {float: left; display: block; color: #fff; padding: 12px 38px 12px 25px; background: url(images/bg_black.png) repeat-x 100% 0; text-shadow: 1px 1px 1px #000; text-decoration: none;} 12 | .black ul.mega-menu li a.dc-mega {position: relative;} 13 | .black ul.mega-menu li a .dc-mega-icon {display: block; position: absolute; top: 18px; right: 15px; width: 8px; height: 6px; background: url(images/arrow.png) no-repeat 0 0;} 14 | .black ul.mega-menu li.mega-hover a, .black ul.mega-menu li a:hover {background-position: 100% -40px; color: #000; text-shadow: none;} 15 | .black ul.mega-menu li.mega-hover a .dc-mega-icon {background-position: 0 100%;} 16 | .black ul.mega-menu li .sub-container {position: absolute; background: url(images/bg_sub_left.png) no-repeat 0 100%; padding-left: 20px; margin-left: -3px;} 17 | .black ul.mega-menu li .sub {background: url(images/bg_sub.png) no-repeat 100% 100%; padding: 20px 20px 20px 10px;} 18 | .black ul.mega-menu li .sub-container.mega .sub {padding: 20px 20px 10px 0;} 19 | .black ul.mega-menu li .sub .row {width: 100%; overflow: hidden; clear: both;} 20 | .black ul.mega-menu li .sub li {list-style: none; float: none; width: 170px; font-size: 1em; font-weight: normal;} 21 | .black ul.mega-menu li .sub li.mega-hdr {margin: 0 10px 10px 0; float: left;} 22 | .black ul.mega-menu li .sub li.mega-hdr.last {margin-right: 0;} 23 | .black ul.mega-menu li .sub a {background: none; border: none; text-shadow: none; color: #111; padding: 7px 10px; display: block; float: none; text-decoration: none; font-size: 0.9em;} 24 | .black ul.mega-menu li .sub li.mega-hdr a.mega-hdr-a {padding: 5px 5px 5px 15px; margin-bottom: 5px; background: #6B6B6B url(images/bg_mega_hdr.png) no-repeat 0 0; text-transform: uppercase; font-weight: bold; color: #fff; text-shadow: 1px 1px 1px #333;} 25 | .black ul.mega-menu li .sub li.mega-hdr a.mega-hdr-a:hover {color: #000; text-shadow: none;} 26 | .black ul.mega-menu .sub li.mega-hdr li a {padding: 4px 5px 4px 20px; background: url(images/arrow_off.png) no-repeat 5px 8px; font-weight: normal;} 27 | .black ul.mega-menu .sub li.mega-hdr li a:hover {color: #a32403; background: #efefef url(images/arrow_on.png) no-repeat 5px 8px;} 28 | .black ul.mega-menu .sub ul li {padding-right: 0;} 29 | .black ul.mega-menu li .sub-container.non-mega .sub {padding: 20px 20px 20px 0;} 30 | .black ul.mega-menu li .sub-container.non-mega li {padding: 0; width: 190px; margin: 0;} 31 | .black ul.mega-menu li .sub-container.non-mega li a {padding: 7px 5px 7px 22px; background: url(images/arrow_off.png) no-repeat 7px 10px;} 32 | .black ul.mega-menu li .sub-container.non-mega li a:hover {color: #a32403; background: #efefef url(images/arrow_on.png) no-repeat 7px 10px;} -------------------------------------------------------------------------------- /css/skins/blue.css: -------------------------------------------------------------------------------- 1 | .mega-menu ul, .mega-menu ul li {list-style: none;} 2 | .mega-menu ul {position: relative; padding: 0; margin: 0;} 3 | .mega-menu ul li ul {display: none;} 4 | .mega-menu .sub {display: none;} 5 | .mega-menu .sub ul {display: block;} 6 | 7 | .blue {font: normal 13px Arial, sans-serif; line-height: 16px;} 8 | .blue ul.mega-menu, .blue ul.mega-menu, .blue ul.mega-menu li {margin: 0; padding: 0; border: none;} 9 | .blue ul.mega-menu{background: #8998a8 url(images/bg_blue.png) repeat-x 0 -80px; width: 100%; height: 40px; border-right: 1px solid #536573; border-left: 1px solid #536573; position: relative;} 10 | .blue ul.mega-menu li {float: left; margin: 0; padding: 0; font-size: 13px; font-weight: bold;} 11 | .blue ul.mega-menu li a {float: left; display: block; color: #fff; padding: 12px 38px 12px 25px; background: url(images/bg_blue.png) repeat-x 100% 0; text-shadow: 1px 1px 1px #000; text-decoration: none;} 12 | .blue ul.mega-menu li a.dc-mega {position: relative;} 13 | .blue ul.mega-menu li a .dc-mega-icon {display: block; position: absolute; top: 18px; right: 15px; width: 8px; height: 6px; background: url(images/arrow.png) no-repeat 0 0;} 14 | .blue ul.mega-menu li.mega-hover a, .blue ul.mega-menu li a:hover {background-position: 100% -40px; color: #000; text-shadow: none;} 15 | .blue ul.mega-menu li.mega-hover a .dc-mega-icon {background-position: 0 100%;} 16 | .blue ul.mega-menu li .sub-container {position: absolute; background: url(images/bg_sub_left.png) no-repeat 0 100%; padding-left: 20px; margin-left: -3px;} 17 | .blue ul.mega-menu li .sub {background: url(images/bg_sub.png) no-repeat 100% 100%; padding: 20px 20px 20px 10px;} 18 | .blue ul.mega-menu li .sub-container.mega .sub {padding: 20px 20px 10px 0;} 19 | .blue ul.mega-menu li .sub .row {width: 100%; overflow: hidden; clear: both;} 20 | .blue ul.mega-menu li .sub li {list-style: none; float: none; width: 170px; font-size: 1em; font-weight: normal;} 21 | .blue ul.mega-menu li .sub li.mega-hdr {margin: 0 10px 10px 0; float: left;} 22 | .blue ul.mega-menu li .sub li.mega-hdr.last {margin-right: 0;} 23 | .blue ul.mega-menu li .sub a {background: none; border: none; text-shadow: none; color: #111; padding: 7px 10px; display: block; float: none; text-decoration: none; font-size: 0.9em;} 24 | .blue ul.mega-menu li .sub li.mega-hdr a.mega-hdr-a {padding: 5px 5px 5px 15px; margin-bottom: 5px; background: #304B73 url(images/bg_mega_hdr.png) no-repeat 0 0; text-transform: uppercase; font-weight: bold; color: #fff; text-shadow: 1px 1px 1px #333;} 25 | .blue ul.mega-menu li .sub li.mega-hdr a.mega-hdr-a:hover {color: #A8B7CF; text-shadow: none;} 26 | .blue ul.mega-menu .sub li.mega-hdr li a {padding: 4px 5px 4px 20px; background: url(images/arrow_off.png) no-repeat 5px 8px; font-weight: normal;} 27 | .blue ul.mega-menu .sub li.mega-hdr li a:hover {color: #a32403; background: #efefef url(images/arrow_on.png) no-repeat 5px 8px;} 28 | .blue ul.mega-menu .sub ul li {padding-right: 0;} 29 | .blue ul.mega-menu li .sub-container.non-mega .sub {padding: 20px 20px 20px 0;} 30 | .blue ul.mega-menu li .sub-container.non-mega li {padding: 0; width: 190px; margin: 0;} 31 | .blue ul.mega-menu li .sub-container.non-mega li a {padding: 7px 5px 7px 22px; background: url(images/arrow_off.png) no-repeat 7px 10px;} 32 | .blue ul.mega-menu li .sub-container.non-mega li a:hover {color: #a32403; background: #efefef url(images/arrow_on.png) no-repeat 7px 10px;} -------------------------------------------------------------------------------- /css/skins/green.css: -------------------------------------------------------------------------------- 1 | .mega-menu ul, .mega-menu ul li {list-style: none;} 2 | .mega-menu ul {position: relative; padding: 0; margin: 0;} 3 | .mega-menu ul li ul {display: none;} 4 | .mega-menu .sub {display: none;} 5 | .mega-menu .sub ul {display: block;} 6 | 7 | .green {font: normal 13px Arial, sans-serif; line-height: 16px;} 8 | .green ul.mega-menu, .green ul.mega-menu, .green ul.mega-menu li {margin: 0; padding: 0; border: none;} 9 | .green ul.mega-menu {background: #222 url(images/bg_green.png) repeat-x 0 -80px; width: 100%; height: 40px; border-right: 1px solid #94cd0b; border-left: 1px solid #94cd0b; position: relative;} 10 | .green ul.mega-menu li {float: left; margin: 0; padding: 0; font-size: 13px; font-weight: bold;} 11 | .green ul.mega-menu li a {float: left; display: block; color: #000; padding: 12px 38px 12px 25px; background: url(images/bg_green.png) repeat-x 100% 0; text-shadow: 1px 1px 1px #fff; text-decoration: none;} 12 | .green ul.mega-menu li a.dc-mega {position: relative;} 13 | .green ul.mega-menu li a .dc-mega-icon {display: block; position: absolute; width: 8px; height: 6px; top: 18px; right: 15px; background: url(images/arrow.png) no-repeat 0 100%;} 14 | .green ul.mega-menu li.mega-hover a, .green ul.mega-menu li a:hover {background-position: 100% -40px; color: #000; text-shadow: none;} 15 | .green ul.mega-menu li.mega-hover a .dc-mega-icon {background-position: 0 100%;} 16 | .green ul.mega-menu li .sub-container {position: absolute; background: url(images/bg_sub_left.png) no-repeat 0 100%; padding-left: 20px; margin-left: -3px;} 17 | .green ul.mega-menu li .sub {background: url(images/bg_sub.png) no-repeat 100% 100%; padding: 20px 20px 20px 10px;} 18 | .green ul.mega-menu li .sub-container.mega .sub {padding: 20px 20px 10px 0;} 19 | .green ul.mega-menu li .sub .row {width: 100%; overflow: hidden; clear: both;} 20 | .green ul.mega-menu li .sub li {list-style: none; float: none; width: 170px; font-size: 1em; font-weight: normal;} 21 | .green ul.mega-menu li .sub li.mega-hdr {margin: 0 10px 10px 0; float: left;} 22 | .green ul.mega-menu li .sub li.mega-hdr.last {margin-right: 0;} 23 | .green ul.mega-menu li .sub a {background: none; border: none; text-shadow: none; color: #111; padding: 7px 10px; display: block; float: none; text-decoration: none; font-size: 0.9em;} 24 | .green ul.mega-menu li .sub li.mega-hdr a.mega-hdr-a {padding: 5px 5px 5px 15px; margin-bottom: 5px; background: #A1C81E url(images/bg_mega_hdr.png) no-repeat 0 0; text-transform: uppercase; font-weight: bold; color: #000; text-shadow: 1px 1px 1px #fff;} 25 | .green ul.mega-menu li .sub li.mega-hdr a.mega-hdr-a:hover {color: #fff; text-shadow: none;} 26 | .green ul.mega-menu .sub li.mega-hdr li a {padding: 4px 5px 4px 20px; background: url(images/arrow_off.png) no-repeat 5px 8px; font-weight: normal;} 27 | .green ul.mega-menu .sub li.mega-hdr li a:hover {color: #a32403; background: #efefef url(images/arrow_on.png) no-repeat 5px 8px;} 28 | .green ul.mega-menu .sub ul li {padding-right: 0;} 29 | .green ul.mega-menu li .sub-container.non-mega .sub {padding: 20px 20px 20px 0;} 30 | .green ul.mega-menu li .sub-container.non-mega li {padding: 0; width: 190px; margin: 0;} 31 | .green ul.mega-menu li .sub-container.non-mega li a {padding: 7px 5px 7px 22px; background: url(images/arrow_off.png) no-repeat 7px 10px;} 32 | .green ul.mega-menu li .sub-container.non-mega li a:hover {color: #a32403; background: #efefef url(images/arrow_on.png) no-repeat 7px 10px;} -------------------------------------------------------------------------------- /css/skins/grey.css: -------------------------------------------------------------------------------- 1 | .mega-menu ul, .mega-menu ul li {list-style: none;} 2 | .mega-menu ul {position: relative; padding: 0; margin: 0;} 3 | .mega-menu ul li ul {display: none;} 4 | .mega-menu .sub {display: none;} 5 | .mega-menu .sub ul {display: block;} 6 | 7 | .grey {font: normal 13px Arial, sans-serif; line-height: 16px;} 8 | .grey ul.mega-menu, .grey ul.mega-menu, .grey ul.mega-menu li {margin: 0; padding: 0; border: none;} 9 | .grey ul.mega-menu {background: #8998a8 url(images/bg_grey.png) repeat-x 0 -80px; width: 100%; height: 40px; border-right: 1px solid #8B949F; border-left: 1px solid #8B949F; position: relative;} 10 | .grey ul.mega-menu li {float: left; margin: 0; padding: 0; font-size: 13px; font-weight: bold;} 11 | .grey ul.mega-menu li a {float: left; display: block; color: #fff; padding: 12px 38px 12px 25px; background: url(images/bg_grey.png) repeat-x 100% 0; text-shadow: 1px 1px 1px #000; text-decoration: none;} 12 | .grey ul.mega-menu li a.dc-mega {position: relative;} 13 | .grey ul.mega-menu li a .dc-mega-icon {display: block; position: absolute; top: 18px; right: 15px; width: 8px; height: 6px; background: url(images/arrow.png) no-repeat 0 0;} 14 | .grey ul.mega-menu li.mega-hover a, .grey ul.mega-menu li a:hover {background-position: 100% -40px; color: #000; text-shadow: none;} 15 | .grey ul.mega-menu li.mega-hover a .dc-mega-icon {background-position: 0 100%;} 16 | .grey ul.mega-menu li .sub-container {position: absolute; background: url(images/bg_sub_left.png) no-repeat 0 100%; padding-left: 20px; margin-left: -3px;} 17 | .grey ul.mega-menu li .sub {background: url(images/bg_sub.png) no-repeat 100% 100%; padding: 20px 20px 20px 10px;} 18 | .grey ul.mega-menu li .sub-container.mega .sub {padding: 20px 20px 10px 0;} 19 | .grey ul.mega-menu li .sub .row {width: 100%; overflow: hidden; clear: both;} 20 | .grey ul.mega-menu li .sub li {list-style: none; float: none; width: 170px; font-size: 1em; font-weight: normal;} 21 | .grey ul.mega-menu li .sub li.mega-hdr {margin: 0 10px 10px 0; float: left;} 22 | .grey ul.mega-menu li .sub li.mega-hdr.last {margin-right: 0;} 23 | .grey ul.mega-menu li .sub a {background: none; border: none; text-shadow: none; color: #111; padding: 7px 10px; display: block; float: none; text-decoration: none; font-size: 0.9em;} 24 | .grey ul.mega-menu li .sub li.mega-hdr a.mega-hdr-a {padding: 5px 5px 5px 15px; margin-bottom: 5px; background: #8A98A9 url(images/bg_mega_hdr.png) no-repeat 0 0; text-transform: uppercase; font-weight: bold; color: #fff; text-shadow: 1px 1px 1px #333;} 25 | .grey ul.mega-menu li .sub li.mega-hdr a.mega-hdr-a:hover {color: #000; text-shadow: none;} 26 | .grey ul.mega-menu .sub li.mega-hdr li a {padding: 4px 5px 4px 20px; background: url(images/arrow_off.png) no-repeat 5px 8px; font-weight: normal;} 27 | .grey ul.mega-menu .sub li.mega-hdr li a:hover {color: #a32403; background: #efefef url(images/arrow_on.png) no-repeat 5px 8px;} 28 | .grey ul.mega-menu .sub ul li {padding-right: 0;} 29 | .grey ul.mega-menu li .sub-container.non-mega .sub {padding: 20px 20px 20px 0;} 30 | .grey ul.mega-menu li .sub-container.non-mega li {padding: 0; width: 190px; margin: 0;} 31 | .grey ul.mega-menu li .sub-container.non-mega li a {padding: 7px 5px 7px 22px; background: url(images/arrow_off.png) no-repeat 7px 10px;} 32 | .grey ul.mega-menu li .sub-container.non-mega li a:hover {color: #a32403; background: #efefef url(images/arrow_on.png) no-repeat 7px 10px;} -------------------------------------------------------------------------------- /css/skins/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/css/skins/images/arrow.png -------------------------------------------------------------------------------- /css/skins/images/arrow_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/css/skins/images/arrow_off.png -------------------------------------------------------------------------------- /css/skins/images/arrow_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/css/skins/images/arrow_on.png -------------------------------------------------------------------------------- /css/skins/images/bg_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/css/skins/images/bg_black.png -------------------------------------------------------------------------------- /css/skins/images/bg_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/css/skins/images/bg_blue.png -------------------------------------------------------------------------------- /css/skins/images/bg_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/css/skins/images/bg_green.png -------------------------------------------------------------------------------- /css/skins/images/bg_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/css/skins/images/bg_grey.png -------------------------------------------------------------------------------- /css/skins/images/bg_light_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/css/skins/images/bg_light_blue.png -------------------------------------------------------------------------------- /css/skins/images/bg_mega_hdr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/css/skins/images/bg_mega_hdr.png -------------------------------------------------------------------------------- /css/skins/images/bg_mega_hdr_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/css/skins/images/bg_mega_hdr_full.png -------------------------------------------------------------------------------- /css/skins/images/bg_mega_hdr_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/css/skins/images/bg_mega_hdr_on.png -------------------------------------------------------------------------------- /css/skins/images/bg_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/css/skins/images/bg_orange.png -------------------------------------------------------------------------------- /css/skins/images/bg_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/css/skins/images/bg_red.png -------------------------------------------------------------------------------- /css/skins/images/bg_sub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/css/skins/images/bg_sub.png -------------------------------------------------------------------------------- /css/skins/images/bg_sub_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/css/skins/images/bg_sub_left.png -------------------------------------------------------------------------------- /css/skins/images/bg_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/css/skins/images/bg_white.png -------------------------------------------------------------------------------- /css/skins/red.css: -------------------------------------------------------------------------------- 1 | .mega-menu ul, .mega-menu ul li {list-style: none;} 2 | .mega-menu ul {position: relative; padding: 0; margin: 0;} 3 | .mega-menu ul li ul {display: none;} 4 | .mega-menu .sub {display: none;} 5 | .mega-menu .sub ul {display: block;} 6 | 7 | .red {font: normal 13px Arial, sans-serif; line-height: 16px;} 8 | .red ul.mega-menu, .red ul.mega-menu, .red ul.mega-menu li {margin: 0; padding: 0; border: none;} 9 | .red ul.mega-menu {background: #8998a8 url(images/bg_red.png) repeat-x 0 -80px; width: 100%; height: 40px; border-right: 1px solid #E41E1F; border-left: 1px solid #E41E1F; position: relative;} 10 | .red ul.mega-menu li {float: left; margin: 0; padding: 0; font-size: 13px; font-weight: bold;} 11 | .red ul.mega-menu li a {float: left; display: block; color: #fff; padding: 12px 38px 12px 25px; background: url(images/bg_red.png) repeat-x 100% 0; text-shadow: 1px 1px 1px #000; text-decoration: none;} 12 | .red ul.mega-menu li a.dc-mega {position: relative;} 13 | .red ul.mega-menu li a .dc-mega-icon {display: block; position: absolute; top: 18px; right: 15px; width: 8px; height: 6px; background: url(images/arrow.png) no-repeat 0 0;} 14 | .red ul.mega-menu li.mega-hover a, .red ul.mega-menu li a:hover {background-position: 100% -40px; color: #000; text-shadow: none;} 15 | .red ul.mega-menu li.mega-hover a .dc-mega-icon {background-position: 0 100%;} 16 | .red ul.mega-menu li .sub-container {position: absolute; background: url(images/bg_sub_left.png) no-repeat 0 100%; padding-left: 20px; margin-left: -3px;} 17 | .red ul.mega-menu li .sub {background: url(images/bg_sub.png) no-repeat 100% 100%; padding: 20px 20px 20px 10px;} 18 | .red ul.mega-menu li .sub-container.mega .sub {padding: 20px 20px 10px 0;} 19 | .red ul.mega-menu li .sub .row {width: 100%; overflow: hidden; clear: both;} 20 | .red ul.mega-menu li .sub li {list-style: none; float: none; width: 170px; font-size: 1em; font-weight: normal;} 21 | .red ul.mega-menu li .sub li.mega-hdr {margin: 0 10px 10px 0; float: left;} 22 | .red ul.mega-menu li .sub li.mega-hdr.last {margin-right: 0;} 23 | .red ul.mega-menu li .sub a {background: none; border: none; text-shadow: none; color: #111; padding: 7px 10px; display: block; float: none; text-decoration: none; font-size: 0.9em;} 24 | .red ul.mega-menu li .sub li.mega-hdr a.mega-hdr-a {padding: 5px 5px 5px 15px; margin-bottom: 5px; background: #DB323A url(images/bg_mega_hdr.png) no-repeat 0 0; text-transform: uppercase; font-weight: bold; color: #fff; text-shadow: 1px 1px 1px #333;} 25 | .red ul.mega-menu li .sub li.mega-hdr a.mega-hdr-a:hover {color: #000; text-shadow: none;} 26 | .red ul.mega-menu .sub li.mega-hdr li a {padding: 4px 5px 4px 20px; background: url(images/arrow_off.png) no-repeat 5px 8px; font-weight: normal;} 27 | .red ul.mega-menu .sub li.mega-hdr li a:hover {color: #a32403; background: #efefef url(images/arrow_on.png) no-repeat 5px 8px;} 28 | .red ul.mega-menu .sub ul li {padding-right: 0;} 29 | .red ul.mega-menu li .sub-container.non-mega .sub {padding: 20px 20px 20px 0;} 30 | .red ul.mega-menu li .sub-container.non-mega li {padding: 0; width: 190px; margin: 0;} 31 | .red ul.mega-menu li .sub-container.non-mega li a {padding: 7px 5px 7px 22px; background: url(images/arrow_off.png) no-repeat 7px 10px;} 32 | .red ul.mega-menu li .sub-container.non-mega li a:hover {color: #a32403; background: #efefef url(images/arrow_on.png) no-repeat 7px 10px;} -------------------------------------------------------------------------------- /css/skins/white.css: -------------------------------------------------------------------------------- 1 | .mega-menu ul, .mega-menu ul li {list-style: none;} 2 | .mega-menu ul {position: relative; padding: 0; margin: 0;} 3 | .mega-menu ul li ul {display: none;} 4 | .mega-menu .sub {display: none;} 5 | .mega-menu .sub ul {display: block;} 6 | 7 | .white {font: normal 13px Arial, sans-serif; line-height: 16px;} 8 | .white ul.mega-menu, .white ul.mega-menu, .white ul.mega-menu li {margin: 0; padding: 0; border: none;} 9 | .white ul.mega-menu {background: #ccc url(images/bg_white.png) repeat-x 0 -80px; width: 100%; height: 40px; border-right: 1px solid #afafaf; border-left: 1px solid #afafaf; position: relative;} 10 | .white ul.mega-menu li {float: left; margin: 0; padding: 0; font-size: 13px; font-weight: bold;} 11 | .white ul.mega-menu li a {float: left; display: block; color: #000; padding: 12px 38px 12px 25px; background: url(images/bg_white.png) repeat-x 100% 0; text-shadow: 1px 1px 1px #fff; text-decoration: none;} 12 | .white ul.mega-menu li a.dc-mega {position: relative;} 13 | .white ul.mega-menu li a .dc-mega-icon {display: block; position: absolute; width: 8px; height: 6px; top: 18px; right: 15px; background: url(images/arrow.png) no-repeat 0 100%;} 14 | .white ul.mega-menu li.mega-hover a, .white ul.mega-menu li a:hover {background-position: 100% -40px; color: #000; text-shadow: none;} 15 | .white ul.mega-menu li.mega-hover a .dc-mega-icon {background-position: 0 100%;} 16 | .white ul.mega-menu li .sub-container {position: absolute; background: url(images/bg_sub_left.png) no-repeat 0 100%; padding-left: 20px; margin-left: -3px;} 17 | .white ul.mega-menu li .sub {background: url(images/bg_sub.png) no-repeat 100% 100%; padding: 20px 20px 20px 10px;} 18 | .white ul.mega-menu li .sub-container.mega .sub {padding: 20px 20px 10px 0;} 19 | .white ul.mega-menu li .sub .row {width: 100%; overflow: hidden; clear: both;} 20 | .white ul.mega-menu li .sub li {list-style: none; float: none; width: 170px; font-size: 1em; font-weight: normal;} 21 | .white ul.mega-menu li .sub li.mega-hdr {margin: 0 10px 10px 0; float: left;} 22 | .white ul.mega-menu li .sub li.mega-hdr.last {margin-right: 0;} 23 | .white ul.mega-menu li .sub a {background: none; border: none; text-shadow: none; color: #111; padding: 7px 10px; display: block; float: none; text-decoration: none; font-size: 0.9em;} 24 | .white ul.mega-menu li .sub li.mega-hdr a.mega-hdr-a {padding: 5px 5px 5px 15px; margin-bottom: 5px; background: #E3E3E3 url(images/bg_mega_hdr.png) no-repeat 0 0; text-transform: uppercase; font-weight: bold; color: #000; text-shadow: 1px 1px 1px #fff;} 25 | .white ul.mega-menu li .sub li.mega-hdr a.mega-hdr-a:hover {color: #a32403; text-shadow: none;} 26 | .white ul.mega-menu .sub li.mega-hdr li a {padding: 4px 5px 4px 20px; background: url(images/arrow_off.png) no-repeat 5px 8px; font-weight: normal;} 27 | .white ul.mega-menu .sub li.mega-hdr li a:hover {color: #a32403; background: #efefef url(images/arrow_on.png) no-repeat 5px 8px;} 28 | .white ul.mega-menu .sub ul li {padding-right: 0;} 29 | .white ul.mega-menu li .sub-container.non-mega .sub {padding: 20px 20px 20px 0;} 30 | .white ul.mega-menu li .sub-container.non-mega li {padding: 0; width: 190px; margin: 0;} 31 | .white ul.mega-menu li .sub-container.non-mega li a {padding: 7px 5px 7px 22px; background: url(images/arrow_off.png) no-repeat 7px 10px;} 32 | .white ul.mega-menu li .sub-container.non-mega li a:hover {color: #a32403; background: #efefef url(images/arrow_on.png) no-repeat 7px 10px;} -------------------------------------------------------------------------------- /css/slice/control_loop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/css/slice/control_loop.png -------------------------------------------------------------------------------- /css/slice/control_loop_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/css/slice/control_loop_hover.png -------------------------------------------------------------------------------- /css/slice/control_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/css/slice/control_pause.png -------------------------------------------------------------------------------- /css/slice/control_pause_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/css/slice/control_pause_hover.png -------------------------------------------------------------------------------- /css/slice/control_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/css/slice/control_play.png -------------------------------------------------------------------------------- /css/slice/control_play_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/css/slice/control_play_hover.png -------------------------------------------------------------------------------- /css/slice/control_stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/css/slice/control_stop.png -------------------------------------------------------------------------------- /css/slice/control_stop_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/css/slice/control_stop_hover.png -------------------------------------------------------------------------------- /css/slice/element_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/css/slice/element_circle.png -------------------------------------------------------------------------------- /css/slice/element_circle_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/css/slice/element_circle_hover.png -------------------------------------------------------------------------------- /css/slice/element_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/css/slice/element_image.png -------------------------------------------------------------------------------- /css/slice/element_image_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/css/slice/element_image_hover.png -------------------------------------------------------------------------------- /css/slice/element_rect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/css/slice/element_rect.png -------------------------------------------------------------------------------- /css/slice/element_rect_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/css/slice/element_rect_hover.png -------------------------------------------------------------------------------- /css/slice/element_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/css/slice/element_select.png -------------------------------------------------------------------------------- /css/slice/element_select_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/css/slice/element_select_hover.png -------------------------------------------------------------------------------- /css/slice/element_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/css/slice/element_text.png -------------------------------------------------------------------------------- /css/slice/element_text_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/css/slice/element_text_hover.png -------------------------------------------------------------------------------- /css/slice/element_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/css/slice/element_video.png -------------------------------------------------------------------------------- /css/slice/frame_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/css/slice/frame_close.png -------------------------------------------------------------------------------- /css/slice/ico_add_layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/css/slice/ico_add_layout.png -------------------------------------------------------------------------------- /css/slice/ico_anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/css/slice/ico_anchor.png -------------------------------------------------------------------------------- /css/slice/ico_anchor_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/css/slice/ico_anchor_hover.png -------------------------------------------------------------------------------- /css/slice/ico_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/css/slice/ico_back.png -------------------------------------------------------------------------------- /css/slice/ico_bad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/css/slice/ico_bad.png -------------------------------------------------------------------------------- /css/slice/ico_del.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/css/slice/ico_del.png -------------------------------------------------------------------------------- /css/slice/ico_dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/css/slice/ico_dot.png -------------------------------------------------------------------------------- /css/slice/ico_eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/css/slice/ico_eye.png -------------------------------------------------------------------------------- /css/slice/ico_good.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/css/slice/ico_good.png -------------------------------------------------------------------------------- /css/slice/ico_lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/css/slice/ico_lock.png -------------------------------------------------------------------------------- /css/slice/ico_needle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/css/slice/ico_needle.png -------------------------------------------------------------------------------- /css/slice/ico_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/css/slice/ico_preview.png -------------------------------------------------------------------------------- /css/slice/ico_trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/css/slice/ico_trash.png -------------------------------------------------------------------------------- /css/slice/ico_trash2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/css/slice/ico_trash2.png -------------------------------------------------------------------------------- /css/slice/ico_trash_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/css/slice/ico_trash_32.png -------------------------------------------------------------------------------- /css/slice/ico_x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/css/slice/ico_x.png -------------------------------------------------------------------------------- /css/slice/ico_x_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/css/slice/ico_x_h.png -------------------------------------------------------------------------------- /css/slice/ico_zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/css/slice/ico_zoom.png -------------------------------------------------------------------------------- /css/slice/ico_zoom_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/css/slice/ico_zoom_bar.png -------------------------------------------------------------------------------- /css/slice/ico_zoom_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/css/slice/ico_zoom_hover.png -------------------------------------------------------------------------------- /css/slice/ico_zoom_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/css/slice/ico_zoom_in.png -------------------------------------------------------------------------------- /css/slice/ico_zoom_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/css/slice/ico_zoom_out.png -------------------------------------------------------------------------------- /css/slice/layer_current.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/css/slice/layer_current.png -------------------------------------------------------------------------------- /css/slice/layer_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/css/slice/layer_hover.png -------------------------------------------------------------------------------- /css/slice/layout_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/css/slice/layout_bg.png -------------------------------------------------------------------------------- /css/slice/layout_bg_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/css/slice/layout_bg_h.png -------------------------------------------------------------------------------- /css/slice/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/css/slice/next.png -------------------------------------------------------------------------------- /css/slice/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/css/slice/search.png -------------------------------------------------------------------------------- /css/slice/slide_move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/css/slice/slide_move.png -------------------------------------------------------------------------------- /css/slice/tip_drag_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/css/slice/tip_drag_file.png -------------------------------------------------------------------------------- /css/sprite/style.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/css/sprite/style.png -------------------------------------------------------------------------------- /demo.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | test 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 |
14 | 15 |
16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /help.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | iAnimation 6 | 7 | 8 | 9 | 10 | 11 | 12 | 21 | 22 | 23 |
24 |
25 |

帮助

26 | 27 |
28 |
29 |
30 | 1、新建项目
31 | 2、拖拽图片至素材库
32 | 3、从素材库拖拽图片到图板,创建图层
33 | 4、双击图层对应的帧区域(有蓝色圆点的区域),以创建帧
34 | 5、调整各个帧下图层的样式
35 | 6、预览
36 |
37 |
38 | 39 | 40 |
41 | 42 | 43 | 44 | 45 | 46 | 59 | 60 | 61 | -------------------------------------------------------------------------------- /images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/images/Thumbs.db -------------------------------------------------------------------------------- /images/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/images/blank.gif -------------------------------------------------------------------------------- /images/colorpicker_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/images/colorpicker_background.png -------------------------------------------------------------------------------- /images/colorpicker_hex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/images/colorpicker_hex.png -------------------------------------------------------------------------------- /images/colorpicker_hsb_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/images/colorpicker_hsb_b.png -------------------------------------------------------------------------------- /images/colorpicker_hsb_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/images/colorpicker_hsb_h.png -------------------------------------------------------------------------------- /images/colorpicker_hsb_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/images/colorpicker_hsb_s.png -------------------------------------------------------------------------------- /images/colorpicker_indic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/images/colorpicker_indic.gif -------------------------------------------------------------------------------- /images/colorpicker_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/images/colorpicker_overlay.png -------------------------------------------------------------------------------- /images/colorpicker_rgb_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/images/colorpicker_rgb_b.png -------------------------------------------------------------------------------- /images/colorpicker_rgb_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/images/colorpicker_rgb_g.png -------------------------------------------------------------------------------- /images/colorpicker_rgb_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/images/colorpicker_rgb_r.png -------------------------------------------------------------------------------- /images/colorpicker_select.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/images/colorpicker_select.gif -------------------------------------------------------------------------------- /images/colorpicker_submit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/images/colorpicker_submit.png -------------------------------------------------------------------------------- /images/custom_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/images/custom_background.png -------------------------------------------------------------------------------- /images/custom_hex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/images/custom_hex.png -------------------------------------------------------------------------------- /images/custom_hsb_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/images/custom_hsb_b.png -------------------------------------------------------------------------------- /images/custom_hsb_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/images/custom_hsb_h.png -------------------------------------------------------------------------------- /images/custom_hsb_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/images/custom_hsb_s.png -------------------------------------------------------------------------------- /images/custom_indic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/images/custom_indic.gif -------------------------------------------------------------------------------- /images/custom_rgb_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/images/custom_rgb_b.png -------------------------------------------------------------------------------- /images/custom_rgb_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/images/custom_rgb_g.png -------------------------------------------------------------------------------- /images/custom_rgb_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/images/custom_rgb_r.png -------------------------------------------------------------------------------- /images/custom_submit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/images/custom_submit.png -------------------------------------------------------------------------------- /images/select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/images/select.png -------------------------------------------------------------------------------- /images/select2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/images/select2.png -------------------------------------------------------------------------------- /images/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/images/slider.png -------------------------------------------------------------------------------- /img/2.ani: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/img/2.ani -------------------------------------------------------------------------------- /img/2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/img/2.ico -------------------------------------------------------------------------------- /img/460.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/img/460.jpg -------------------------------------------------------------------------------- /img/CROSS.CUR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/img/CROSS.CUR -------------------------------------------------------------------------------- /img/NWSE.ANI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/img/NWSE.ANI -------------------------------------------------------------------------------- /img/WE.ANI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/img/WE.ANI -------------------------------------------------------------------------------- /img/canvas_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/img/canvas_bg.png -------------------------------------------------------------------------------- /img/ico_trash_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/img/ico_trash_32.png -------------------------------------------------------------------------------- /img/lb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/img/lb.png -------------------------------------------------------------------------------- /img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/img/loading.gif -------------------------------------------------------------------------------- /img/loading_16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/img/loading_16.gif -------------------------------------------------------------------------------- /img/lt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/img/lt.png -------------------------------------------------------------------------------- /img/pos.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/img/pos.ico -------------------------------------------------------------------------------- /img/qz_msgbox_layer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/img/qz_msgbox_layer.png -------------------------------------------------------------------------------- /img/rb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/img/rb.png -------------------------------------------------------------------------------- /img/resize.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/img/resize.ico -------------------------------------------------------------------------------- /img/rotate.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/img/rotate.ico -------------------------------------------------------------------------------- /img/rt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/img/rt.png -------------------------------------------------------------------------------- /img/skew.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/img/skew.ico -------------------------------------------------------------------------------- /img/tl_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/img/tl_bg.png -------------------------------------------------------------------------------- /img/tl_bg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/img/tl_bg2.png -------------------------------------------------------------------------------- /js/ZeroClipboard.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/js/ZeroClipboard.swf -------------------------------------------------------------------------------- /js/jquery.hoverIntent.minified.js: -------------------------------------------------------------------------------- 1 | /** 2 | * hoverIntent r5 // 2007.03.27 // jQuery 1.1.2+ 3 | * 4 | * 5 | * @param f onMouseOver function || An object with configuration options 6 | * @param g onMouseOut function || Nothing (use configuration options object) 7 | * @author Brian Cherne 8 | */ 9 | (function($){$.fn.hoverIntent=function(f,g){var cfg={sensitivity:7,interval:100,timeout:0};cfg=$.extend(cfg,g?{over:f,out:g}:f);var cX,cY,pX,pY;var track=function(ev){cX=ev.pageX;cY=ev.pageY;};var compare=function(ev,ob){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);if((Math.abs(pX-cX)+Math.abs(pY-cY)) 2 | 3 | 4 | 5 | 新建项目 6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 |
14 |

添加项目

15 | 16 |
17 |
18 |
19 |
20 |
21 | 项目名称: 22 | 23 | 24 | 25 | 26 |
27 |
28 | 画板宽: 29 |  px 30 |
31 |
32 | 画板高: 33 |  px 34 |
35 |
36 |
37 |       作者: 38 | 39 |
40 |
41 |
42 |
43 | 确定 44 | 取消 45 |
46 |
47 |
48 |
49 | 50 | 51 | 52 | 53 | 54 | 55 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | -------------------------------------------------------------------------------- /project_list.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 项目列表 6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 |
14 |

选择项目

15 | 16 | 17 |
18 |
19 |
20 |
21 | 项目列表 22 | 精彩DEMO 23 |
24 |
25 | 回收站 26 | 新建项目 27 |
28 | 29 |
30 |
31 |
32 | 项目名称 33 | 作者 34 | 创建时间 35 | 修改时间 36 |
37 |
    38 |
    39 |
    40 |
    41 | 42 | 43 |
    44 | 45 | 46 | 47 | 48 | 49 | 84 | 85 | 86 | -------------------------------------------------------------------------------- /server/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/.htaccess -------------------------------------------------------------------------------- /server/export/1/index.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | test1 6 | 7 | 58 | 59 | 60 | 61 | 62 | 63 | 64 |
    65 |
    66 |
    67 | 68 | 69 | 70 | -------------------------------------------------------------------------------- /server/export/3/index.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | open1 6 | 7 | 34 | 35 | 36 | 37 | 38 | 39 | 40 |
    41 |
    42 | 43 | 44 | 45 | -------------------------------------------------------------------------------- /server/export/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/export/index.htm -------------------------------------------------------------------------------- /server/export/project_test/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/export/project_test/index.htm -------------------------------------------------------------------------------- /server/include/conn.php: -------------------------------------------------------------------------------- 1 | StartTime = $this->get_microtime(); 18 | } 19 | function stop(){ 20 | $this->StopTime = $this->get_microtime(); 21 | } 22 | function spent() { 23 | return round(($this->StopTime - $this->StartTime) * 1000, 1); 24 | } 25 | } 26 | 27 | $_SESSION["htdoc_root"]="iAnimator/server"; 28 | 29 | /* 30 | mysql_connect("localhost","batch","batch");//连接MySQL 31 | mysql_select_db("batch");//选择数据库 32 | mysql_query("set character set 'utf8'"); 33 | mysql_query("set names 'utf8'"); 34 | */ 35 | 36 | ?> -------------------------------------------------------------------------------- /server/index.php: -------------------------------------------------------------------------------- 1 | $val) { 23 | $post[$key]=addslashes($val); 24 | } 25 | 26 | 27 | require_once($module.'.php'); 28 | $module_str="\$simulation=new ".$module."Mod;"; 29 | $method_str="\$simulation->".$method."(\$post);"; 30 | eval($module_str.$method_str); 31 | 32 | 33 | 34 | ?> -------------------------------------------------------------------------------- /server/project/0/_thumb_header_bg_top.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/0/_thumb_header_bg_top.jpg -------------------------------------------------------------------------------- /server/project/0/coin_29x25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/0/coin_29x25.png -------------------------------------------------------------------------------- /server/project/0/coin_40x42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/0/coin_40x42.png -------------------------------------------------------------------------------- /server/project/0/coin_50x43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/0/coin_50x43.png -------------------------------------------------------------------------------- /server/project/0/coin_53x67.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/0/coin_53x67.png -------------------------------------------------------------------------------- /server/project/0/coin_69x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/0/coin_69x70.png -------------------------------------------------------------------------------- /server/project/0/header_bg_top.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/0/header_bg_top.jpg -------------------------------------------------------------------------------- /server/project/0/html.txt: -------------------------------------------------------------------------------- 1 |
    2 |
    3 |
    4 |
    5 |
    6 |
    7 |
    8 |
    9 |
    10 |
    11 |
    12 |
    13 |
    14 |
    15 |
    16 |
    17 |
    18 |
    19 | -------------------------------------------------------------------------------- /server/project/0/list.json: -------------------------------------------------------------------------------- 1 | [{"name":"coin_29x25.png","thumb_name":"coin_29x25.png","thumb_width":29,"thumb_height":25,"width":29,"height":25},{"name":"coin_40x42.png","thumb_name":"coin_40x42.png","thumb_width":40,"thumb_height":42,"width":40,"height":42},{"name":"coin_50x43.png","thumb_name":"coin_50x43.png","thumb_width":50,"thumb_height":43,"width":50,"height":43},{"name":"coin_53x67.png","thumb_name":"coin_53x67.png","thumb_width":53,"thumb_height":67,"width":53,"height":67},{"name":"coin_69x70.png","thumb_name":"coin_69x70.png","thumb_width":69,"thumb_height":70,"width":69,"height":70},{"name":"header_bg_top.jpg","thumb_name":"_thumb_header_bg_top.jpg","thumb_width":100,"thumb_height":14,"width":1600,"height":210}] -------------------------------------------------------------------------------- /server/project/1/_thumb_custom_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/1/_thumb_custom_background.png -------------------------------------------------------------------------------- /server/project/1/_thumb_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/1/_thumb_light.png -------------------------------------------------------------------------------- /server/project/1/_thumb_logo_py1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/1/_thumb_logo_py1.png -------------------------------------------------------------------------------- /server/project/1/_thumb_rule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/1/_thumb_rule.png -------------------------------------------------------------------------------- /server/project/1/colorpicker_rgb_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/1/colorpicker_rgb_g.png -------------------------------------------------------------------------------- /server/project/1/colorpicker_rgb_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/1/colorpicker_rgb_r.png -------------------------------------------------------------------------------- /server/project/1/colorpicker_select.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/1/colorpicker_select.gif -------------------------------------------------------------------------------- /server/project/1/colorpicker_submit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/1/colorpicker_submit.png -------------------------------------------------------------------------------- /server/project/1/custom_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/1/custom_background.png -------------------------------------------------------------------------------- /server/project/1/custom_hex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/1/custom_hex.png -------------------------------------------------------------------------------- /server/project/1/html.txt: -------------------------------------------------------------------------------- 1 |
    2 |
    3 |
    4 |
    5 |
    6 | -------------------------------------------------------------------------------- /server/project/1/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/1/light.png -------------------------------------------------------------------------------- /server/project/1/list.json: -------------------------------------------------------------------------------- 1 | [{"name":"colorpicker_rgb_r.png","thumb_name":"colorpicker_rgb_r.png","thumb_width":62,"thumb_height":66,"width":62,"height":66},{"name":"colorpicker_rgb_g.png","thumb_name":"colorpicker_rgb_g.png","thumb_width":62,"thumb_height":66,"width":62,"height":66},{"name":"colorpicker_select.gif","thumb_name":"colorpicker_select.gif","thumb_width":11,"thumb_height":11,"width":11,"height":11},{"name":"colorpicker_submit.png","thumb_name":"colorpicker_submit.png","thumb_width":22,"thumb_height":44,"width":22,"height":44},{"name":"custom_background.png","thumb_name":"_thumb_custom_background.png","thumb_width":100,"thumb_height":50,"width":356,"height":176},{"name":"custom_hex.png","thumb_name":"custom_hex.png","thumb_width":72,"thumb_height":44,"width":72,"height":44}] -------------------------------------------------------------------------------- /server/project/1/logo_py1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/1/logo_py1.png -------------------------------------------------------------------------------- /server/project/1/logo_qz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/1/logo_qz.png -------------------------------------------------------------------------------- /server/project/1/project.json: -------------------------------------------------------------------------------- 1 | {"project_info":{"id":1,"name":"New_Project2","author":"","privacy":"1","time_add":1335728101,"time_save":1336129798,"del_flag":0,"layer_count":3},"time_scale_data":{"count":50,"margin":100,"interval":0.5},"canvas_data":{"width":400,"height":300,"background_type":1,"background_color":"#e0c7e0","background_image":""},"layer_data":[{"id":"layer_0","name":"New_layer_21","iteration":"1","use_flag":1,"style":"{\"background_size_x\":100,\"background_size_y\":100,\"background_image\":\"colorpicker_submit.png\",\"left\":\"85px\",\"top\":\"206px\",\"animation_iteration\":\"1\"}","frame":{"count":7,"data":[{"custom_style":"","id":"frame_item_0","style":"{\"translate_y\":\"0\",\"width\":\"22px\",\"height\":\"44px\"}","time":0},{"custom_style":"","id":"frame_item_1","style":"{\"translate_y\":\"0\",\"width\":\"22px\",\"height\":\"44px\"}","time":0.2},{"custom_style":"","id":"frame_item_2","style":"{\"translate_y\":\"-30\",\"width\":\"22px\",\"height\":\"44px\"}","time":0.4},{"custom_style":"","id":"frame_item_3","style":"{\"translate_y\":\"0\",\"width\":\"22px\",\"height\":\"44px\"}","time":0.5},{"custom_style":"","id":"frame_item_4","style":"{\"translate_y\":\"-15\",\"width\":\"22px\",\"height\":\"44px\"}","time":0.6},{"custom_style":"","id":"frame_item_5","style":"{\"translate_y\":\"0\",\"width\":\"22px\",\"height\":\"44px\"}","time":0.8},{"custom_style":"","id":"frame_item_6","style":"{\"translate_y\":\"0\",\"width\":\"22px\",\"height\":\"44px\"}","time":1}]},"img":{"name":"colorpicker_submit.png","width":22,"height":44}},{"id":"layer_1","name":"New_layer_01","iteration":"1","use_flag":1,"style":"{\"background_size_x\":100,\"background_size_y\":100,\"background_image\":\"custom_hex.png\",\"left\":\"205px\",\"top\":\"128px\"}","frame":{"count":6,"data":[{"custom_style":"","id":"frame_item_0","style":"{\"width\":\"72px\",\"height\":\"44px\"}","time":0},{"custom_style":"","id":"frame_item_1","style":"{\"rotate\":\"15\",\"orgin_x\":\"50\",\"orgin_y\":\"0\",\"width\":\"72px\",\"height\":\"44px\"}","time":0.2},{"custom_style":"","id":"frame_item_2","style":"{\"rotate\":\"-10\",\"orgin_x\":\"50\",\"orgin_y\":\"0\",\"width\":\"72px\",\"height\":\"44px\"}","time":0.4},{"custom_style":"","id":"frame_item_3","style":"{\"rotate\":\"5\",\"orgin_x\":\"50\",\"orgin_y\":\"0\",\"width\":\"72px\",\"height\":\"44px\"}","time":0.6},{"custom_style":"","id":"frame_item_4","style":"{\"rotate\":\"-5\",\"orgin_x\":\"50\",\"orgin_y\":\"0\",\"width\":\"72px\",\"height\":\"44px\"}","time":0.8},{"custom_style":"","id":"frame_item_5","style":"{\"width\":\"72px\",\"height\":\"44px\"}","time":1}]},"img":{"name":"custom_hex.png","width":72,"height":44}},{"id":"layer_2","name":"New_layer_1","iteration":"1","use_flag":1,"style":"{\"background_size_x\":100,\"background_size_y\":100,\"background_image\":\"colorpicker_rgb_r.png\",\"left\":\"52px\",\"top\":\"208px\"}","frame":{"count":2,"data":[{"id":"frame_item_0","style":"{\"width\":\"62px\",\"height\":\"66px\",\"skew\":\"0\",\"scale_x\":\"1\",\"scale_y\":\"1\",\"rotate\":\"0\",\"translate_x\":\"31\",\"translate_y\":\"-59\"}","custom_style":"","time":"0"},{"id":"frame_item_1","time":"2.97","style":"{\"width\":\"62px\",\"height\":\"66px\",\"skew\":\"0\",\"scale_x\":\"1\",\"scale_y\":\"1\",\"rotate\":\"0\",\"translate_x\":\"175\",\"translate_y\":\"-40\"}","custom_style":""}]},"img":{"name":"colorpicker_rgb_r.png","width":62,"height":66}}]} -------------------------------------------------------------------------------- /server/project/1/rule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/1/rule.png -------------------------------------------------------------------------------- /server/project/10/project.json: -------------------------------------------------------------------------------- 1 | {"project_info":{"id":10,"name":"New_Project","author":"","privacy":"1","time_add":1336117567,"time_save":"","del_flag":0,"layer_count":0},"canvas_data":{"width":400,"height":300,"background_type":1,"background_color":"#fff","background_image":""}} -------------------------------------------------------------------------------- /server/project/11/css.txt: -------------------------------------------------------------------------------- 1 | .mod_canvas{width:400px;height:300px;background-color:#fff;} 2 | -------------------------------------------------------------------------------- /server/project/11/html.txt: -------------------------------------------------------------------------------- 1 |
    2 |
    3 | -------------------------------------------------------------------------------- /server/project/11/index.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Project_0507 6 | 7 | 38 | 39 | 40 | 41 | 42 | 43 | 44 |
    45 |
    46 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /server/project/11/project.json: -------------------------------------------------------------------------------- 1 | {"project_info":{"id":11,"name":"Project_0507","author":"","privacy":0,"time_add":1336366638,"time_save":1336366673,"del_flag":0,"layer_count":0},"time_scale_data":{"count":50,"margin":100,"interval":0.5},"canvas_data":{"width":400,"height":300,"background_type":1,"background_color":"#fff","background_image":""},"layer_data":[]} -------------------------------------------------------------------------------- /server/project/12/css.txt: -------------------------------------------------------------------------------- 1 | .mod_canvas{width:600px;height:500px;background-color:#fff;} 2 | -------------------------------------------------------------------------------- /server/project/12/html.txt: -------------------------------------------------------------------------------- 1 |
    2 |
    3 | -------------------------------------------------------------------------------- /server/project/12/index.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Project_0507 6 | 7 | 38 | 39 | 40 | 41 | 42 | 43 | 44 |
    45 |
    46 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /server/project/12/project.json: -------------------------------------------------------------------------------- 1 | {"project_info":{"id":12,"name":"Project_0507","author":"","privacy":0,"time_add":1336386006,"time_save":1337148231,"del_flag":0,"layer_count":0},"time_scale_data":{"count":50,"margin":100,"interval":0.5},"canvas_data":{"width":600,"height":500,"background_type":1,"background_color":"#fff","background_image":""},"layer_data":[]} -------------------------------------------------------------------------------- /server/project/13/project.json: -------------------------------------------------------------------------------- 1 | {"project_info":{"id":13,"name":"Project_0507","author":"","privacy":0,"time_add":1336386338,"time_save":"","del_flag":0,"layer_count":0},"canvas_data":{"width":400,"height":300,"background_type":1,"background_color":"#fff","background_image":""}} -------------------------------------------------------------------------------- /server/project/14/css.txt: -------------------------------------------------------------------------------- 1 | .mod_canvas{width:400px;height:300px;background-color:#fff;} 2 | -------------------------------------------------------------------------------- /server/project/14/html.txt: -------------------------------------------------------------------------------- 1 |
    2 |
    3 | -------------------------------------------------------------------------------- /server/project/14/index.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Project_0507 6 | 7 | 38 | 39 | 40 | 41 | 42 | 43 | 44 |
    45 |
    46 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /server/project/14/project.json: -------------------------------------------------------------------------------- 1 | {"project_info":{"id":14,"name":"Project_0507","author":"","privacy":0,"time_add":1336386601,"time_save":1336386631,"del_flag":0,"layer_count":0},"time_scale_data":{"count":50,"margin":100,"interval":0.5},"canvas_data":{"width":400,"height":300,"background_type":1,"background_color":"#fff","background_image":""},"layer_data":[]} -------------------------------------------------------------------------------- /server/project/15/20120326090812101.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/15/20120326090812101.jpg -------------------------------------------------------------------------------- /server/project/15/_thumb_20120326090812101.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/15/_thumb_20120326090812101.jpg -------------------------------------------------------------------------------- /server/project/15/_thumb_jze.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/15/_thumb_jze.jpg -------------------------------------------------------------------------------- /server/project/15/jze.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/15/jze.jpg -------------------------------------------------------------------------------- /server/project/15/list.json: -------------------------------------------------------------------------------- 1 | [{"name":"jze.jpg","thumb_name":"_thumb_jze.jpg","thumb_width":100,"thumb_height":102,"width":312,"height":316},{"name":"20120326090812101.jpg","thumb_name":"_thumb_20120326090812101.jpg","thumb_width":100,"thumb_height":110,"width":458,"height":500}] -------------------------------------------------------------------------------- /server/project/15/project.json: -------------------------------------------------------------------------------- 1 | {"project_info":{"id":15,"name":"Project_0507","author":"ivane","privacy":0,"time_add":1336387913,"time_save":"","del_flag":0,"layer_count":0},"canvas_data":{"width":400,"height":300,"background_type":1,"background_color":"#fff","background_image":""}} -------------------------------------------------------------------------------- /server/project/16/20120326090812101.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/16/20120326090812101.jpg -------------------------------------------------------------------------------- /server/project/16/_thumb_20120326090812101.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/16/_thumb_20120326090812101.jpg -------------------------------------------------------------------------------- /server/project/16/_thumb_jze.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/16/_thumb_jze.jpg -------------------------------------------------------------------------------- /server/project/16/jze.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/16/jze.jpg -------------------------------------------------------------------------------- /server/project/16/list.json: -------------------------------------------------------------------------------- 1 | [{"name":"jze.jpg","thumb_name":"_thumb_jze.jpg","thumb_width":100,"thumb_height":102,"width":312,"height":316},{"name":"20120326090812101.jpg","thumb_name":"_thumb_20120326090812101.jpg","thumb_width":100,"thumb_height":110,"width":458,"height":500}] -------------------------------------------------------------------------------- /server/project/16/project.json: -------------------------------------------------------------------------------- 1 | {"project_info":{"id":16,"name":"ivane","author":"ivane","privacy":0,"time_add":1336388130,"time_save":"","del_flag":0,"layer_count":0},"canvas_data":{"width":400,"height":300,"background_type":1,"background_color":"#fff","background_image":""}} -------------------------------------------------------------------------------- /server/project/17/_thumb_icon_152x153.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/17/_thumb_icon_152x153.jpg -------------------------------------------------------------------------------- /server/project/17/icon_152x153.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/17/icon_152x153.jpg -------------------------------------------------------------------------------- /server/project/17/icon_50x50.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/17/icon_50x50.jpg -------------------------------------------------------------------------------- /server/project/17/list.json: -------------------------------------------------------------------------------- 1 | [{"name":"icon_50x50.jpg","thumb_name":"icon_50x50.jpg","thumb_width":50,"thumb_height":50,"width":50,"height":50},{"name":"icon_152x153.jpg","thumb_name":"_thumb_icon_152x153.jpg","thumb_width":100,"thumb_height":100,"width":152,"height":152}] -------------------------------------------------------------------------------- /server/project/17/project.json: -------------------------------------------------------------------------------- 1 | {"project_info":{"id":17,"name":"Project_0508","author":"","privacy":0,"time_add":1336442317,"time_save":"","del_flag":0,"layer_count":0},"canvas_data":{"width":400,"height":300,"background_type":1,"background_color":"#fff","background_image":""}} -------------------------------------------------------------------------------- /server/project/18/20120326090812101.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/18/20120326090812101.jpg -------------------------------------------------------------------------------- /server/project/18/_thumb_20120326090812101.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/18/_thumb_20120326090812101.jpg -------------------------------------------------------------------------------- /server/project/18/_thumb_jze.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/18/_thumb_jze.jpg -------------------------------------------------------------------------------- /server/project/18/jze.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/18/jze.jpg -------------------------------------------------------------------------------- /server/project/18/list.json: -------------------------------------------------------------------------------- 1 | [{"name":"20120326090812101.jpg","thumb_name":"_thumb_20120326090812101.jpg","thumb_width":100,"thumb_height":110,"width":458,"height":500},{"name":"jze.jpg","thumb_name":"_thumb_jze.jpg","thumb_width":100,"thumb_height":102,"width":312,"height":316}] -------------------------------------------------------------------------------- /server/project/18/project.json: -------------------------------------------------------------------------------- 1 | {"project_info":{"id":18,"name":"ivane","author":"ivane","privacy":0,"time_add":1336442515,"time_save":"","del_flag":0,"layer_count":0},"canvas_data":{"width":400,"height":300,"background_type":1,"background_color":"#fff","background_image":""}} -------------------------------------------------------------------------------- /server/project/19/project.json: -------------------------------------------------------------------------------- 1 | {"project_info":{"id":19,"name":"Project_0509","author":"","privacy":0,"time_add":1336550241,"time_save":"","del_flag":0,"layer_count":0},"canvas_data":{"width":400,"height":300,"background_type":1,"background_color":"#fff","background_image":""}} -------------------------------------------------------------------------------- /server/project/2/2157026_103313663117_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/2/2157026_103313663117_2.jpg -------------------------------------------------------------------------------- /server/project/2/New.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/2/New.jpg -------------------------------------------------------------------------------- /server/project/2/_thumb_2157026_103313663117_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/2/_thumb_2157026_103313663117_2.jpg -------------------------------------------------------------------------------- /server/project/2/_thumb_New.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/2/_thumb_New.jpg -------------------------------------------------------------------------------- /server/project/2/cooperate_csdn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/2/cooperate_csdn.jpg -------------------------------------------------------------------------------- /server/project/2/css.txt: -------------------------------------------------------------------------------- 1 | .mod_canvas{width:400px;height:300px;background-color:#81c4ae;} 2 | .mod_canvas .layer_1{ 3 | position:absolute;left:93px;top:96px;background-size:100% 100%;background-image:url(../../project/2/2157026_103313663117_2.jpg); 4 | -webkit-animation: frame_layer_1 1.03s infinite; 5 | -moz-animation: frame_layer_1 1.03s infinite; 6 | 7 | } 8 | @-webkit-keyframes frame_layer_1 { 9 | 0% {width:256px;height:245px;} 10 | 19.417475728155% {width:256px;height:245px;-webkit-transform:perspective(0px) translate(0px,0px) translateZ(0px) scale(1,1) skew(0deg) rotateX(0deg) rotateY(0deg) rotate(15deg) ;-webkit-transform-origin:50% 0%;} 11 | 38.834951456311% {width:256px;height:245px;-webkit-transform:perspective(0px) translate(0px,0px) translateZ(0px) scale(1,1) skew(0deg) rotateX(0deg) rotateY(0deg) rotate(-10deg) ;-webkit-transform-origin:50% 0%;} 12 | 58.252427184466% {width:256px;height:245px;-webkit-transform:perspective(0px) translate(0px,0px) translateZ(0px) scale(1,1) skew(0deg) rotateX(0deg) rotateY(0deg) rotate(5deg) ;-webkit-transform-origin:50% 0%;} 13 | 77.669902912621% {width:256px;height:245px;-webkit-transform:perspective(0px) translate(0px,0px) translateZ(0px) scale(1,1) skew(0deg) rotateX(0deg) rotateY(0deg) rotate(-5deg) ;-webkit-transform-origin:50% 0%;} 14 | 100% {width:256px;height:245px;} 15 | } 16 | @-moz-keyframes frame_layer_1 { 17 | 0% {width:256px;height:245px;} 18 | 19.417475728155% {width:256px;height:245px;-moz-transform:perspective(0px) translate(0px,0px) translateZ(0px) scale(1,1) skew(0deg) rotateX(0deg) rotateY(0deg) rotate(15deg) ;-moz-transform-origin:50% 0%;} 19 | 38.834951456311% {width:256px;height:245px;-moz-transform:perspective(0px) translate(0px,0px) translateZ(0px) scale(1,1) skew(0deg) rotateX(0deg) rotateY(0deg) rotate(-10deg) ;-moz-transform-origin:50% 0%;} 20 | 58.252427184466% {width:256px;height:245px;-moz-transform:perspective(0px) translate(0px,0px) translateZ(0px) scale(1,1) skew(0deg) rotateX(0deg) rotateY(0deg) rotate(5deg) ;-moz-transform-origin:50% 0%;} 21 | 77.669902912621% {width:256px;height:245px;-moz-transform:perspective(0px) translate(0px,0px) translateZ(0px) scale(1,1) skew(0deg) rotateX(0deg) rotateY(0deg) rotate(-5deg) ;-moz-transform-origin:50% 0%;} 22 | 100% {width:256px;height:245px;} 23 | } 24 | .mod_canvas .layer_2{ 25 | position:absolute;left:167px;top:22px;background-size:100% 100%;background-image:url(../../project/2/cooperate_csdn.jpg); 26 | -webkit-animation: frame_layer_2 1s infinite; 27 | -moz-animation: frame_layer_2 1s infinite; 28 | 29 | } 30 | @-webkit-keyframes frame_layer_2 { 31 | 0% {opacity:1;width:80px;height:36px;} 32 | 25% {opacity:0.5;width:80px;height:36px;} 33 | 50% {opacity:1;width:80px;height:36px;} 34 | 75% {opacity:0.5;width:80px;height:36px;} 35 | 100% {opacity:1;width:80px;height:36px;} 36 | } 37 | @-moz-keyframes frame_layer_2 { 38 | 0% {opacity:1;width:80px;height:36px;} 39 | 25% {opacity:0.5;width:80px;height:36px;} 40 | 50% {opacity:1;width:80px;height:36px;} 41 | 75% {opacity:0.5;width:80px;height:36px;} 42 | 100% {opacity:1;width:80px;height:36px;} 43 | } 44 | -------------------------------------------------------------------------------- /server/project/2/html.txt: -------------------------------------------------------------------------------- 1 |
    2 |
    3 |
    4 |
    5 | -------------------------------------------------------------------------------- /server/project/2/list.json: -------------------------------------------------------------------------------- 1 | [{"name":"2157026_103313663117_2.jpg","thumb_name":"_thumb_2157026_103313663117_2.jpg","thumb_width":100,"thumb_height":96,"width":256,"height":245},{"name":"cooperate_csdn.jpg","thumb_name":"cooperate_csdn.jpg","thumb_width":80,"thumb_height":36,"width":80,"height":36}] -------------------------------------------------------------------------------- /server/project/2/project.json: -------------------------------------------------------------------------------- 1 | {"project_info":{"id":2,"name":"New_Project","author":"","privacy":"1","time_add":1333218181,"time_save":1336388059,"del_flag":0,"layer_count":3},"time_scale_data":{"count":50,"margin":100,"interval":0.5},"canvas_data":{"width":400,"height":300,"background_type":1,"background_color":"#81c4ae","background_image":""},"layer_data":[{"id":"layer_1","name":"New_layer_1","iteration":"1","use_flag":1,"style":"{\"background_size_x\":100,\"background_size_y\":100,\"background_image\":\"2157026_103313663117_2.jpg\",\"left\":\"93px\",\"top\":\"96px\"}","frame":{"count":6,"data":[{"custom_style":"","id":"frame_item_0","style":"{\"width\":\"256px\",\"height\":\"245px\"}","time":0},{"custom_style":"","id":"frame_item_1","style":"{\"rotate\":\"15\",\"orgin_x\":\"50\",\"orgin_y\":\"0\",\"width\":\"256px\",\"height\":\"245px\"}","time":0.2},{"custom_style":"","id":"frame_item_2","style":"{\"rotate\":\"-10\",\"orgin_x\":\"50\",\"orgin_y\":\"0\",\"width\":\"256px\",\"height\":\"245px\"}","time":0.4},{"custom_style":"","id":"frame_item_3","style":"{\"rotate\":\"5\",\"orgin_x\":\"50\",\"orgin_y\":\"0\",\"width\":\"256px\",\"height\":\"245px\"}","time":0.6},{"custom_style":"","id":"frame_item_4","style":"{\"rotate\":\"-5\",\"orgin_x\":\"50\",\"orgin_y\":\"0\",\"width\":\"256px\",\"height\":\"245px\"}","time":0.8},{"custom_style":"","id":"frame_item_5","style":"{\"width\":\"256px\",\"height\":\"245px\"}","time":"1.03"}]},"img":{"name":"2157026_103313663117_2.jpg","width":256,"height":245}},{"id":"layer_2","name":"New_layer_2","iteration":"1","use_flag":1,"style":"{\"background_size_x\":100,\"background_size_y\":100,\"background_image\":\"cooperate_csdn.jpg\",\"left\":\"167px\",\"top\":\"22px\",\"animation_iteration\":\"infinite\"}","frame":{"count":5,"data":[{"custom_style":"","id":"frame_item_0","style":"{\"opacity\":1,\"width\":\"80px\",\"height\":\"36px\"}","time":0},{"custom_style":"","id":"frame_item_1","style":"{\"opacity\":0.5,\"width\":\"80px\",\"height\":\"36px\"}","time":0.25},{"custom_style":"","id":"frame_item_2","style":"{\"opacity\":1,\"width\":\"80px\",\"height\":\"36px\"}","time":0.5},{"custom_style":"","id":"frame_item_3","style":"{\"opacity\":0.5,\"width\":\"80px\",\"height\":\"36px\"}","time":0.75},{"custom_style":"","id":"frame_item_4","style":"{\"opacity\":1,\"width\":\"80px\",\"height\":\"36px\"}","time":1}]},"img":{"name":"cooperate_csdn.jpg","width":80,"height":36}}]} -------------------------------------------------------------------------------- /server/project/20/_thumb_a_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/20/_thumb_a_light.png -------------------------------------------------------------------------------- /server/project/20/_thumb_header_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/20/_thumb_header_a.png -------------------------------------------------------------------------------- /server/project/20/a_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/20/a_light.png -------------------------------------------------------------------------------- /server/project/20/a_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/20/a_star.png -------------------------------------------------------------------------------- /server/project/20/a_star_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/20/a_star_b.png -------------------------------------------------------------------------------- /server/project/20/header_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/20/header_a.png -------------------------------------------------------------------------------- /server/project/20/html.txt: -------------------------------------------------------------------------------- 1 |
    2 |
    3 |
    4 |
    5 |
    6 |
    7 |
    8 |
    9 |
    10 |
    11 |
    12 |
    13 |
    14 |
    15 |
    16 |
    17 |
    18 | -------------------------------------------------------------------------------- /server/project/20/list.json: -------------------------------------------------------------------------------- 1 | [{"name":"header_a.png","thumb_name":"_thumb_header_a.png","thumb_width":100,"thumb_height":31,"width":1077,"height":330},{"name":"a_star_b.png","thumb_name":"a_star_b.png","thumb_width":43,"thumb_height":32,"width":43,"height":32},{"name":"a_star.png","thumb_name":"a_star.png","thumb_width":21,"thumb_height":16,"width":21,"height":16},{"name":"a_light.png","thumb_name":"_thumb_a_light.png","thumb_width":100,"thumb_height":36,"width":1181,"height":421}] -------------------------------------------------------------------------------- /server/project/21/_thumb_clockface.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/21/_thumb_clockface.jpg -------------------------------------------------------------------------------- /server/project/21/clockface.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/21/clockface.jpg -------------------------------------------------------------------------------- /server/project/21/css.txt: -------------------------------------------------------------------------------- 1 | .mod_canvas{background-position:center top;width:600px;height:600px;background-color:#fff;background-image:url(../../project/21//clockface.jpg)} 2 | .mod_canvas .layer_0{ 3 | position:absolute;left:282px;top:183px;background-size:100% 100%;background-image:url(../../project/21/hourhand.png); 4 | -webkit-animation: frame_layer_0 1s infinite;-webkit-animation-fill-mode:both; 5 | -moz-animation: frame_layer_0 1s infinite;-moz-animation-fill-mode:both; 6 | 7 | } 8 | @-webkit-keyframes frame_layer_0 { 9 | 0% {width:30px;height:600px;-webkit-transform:perspective(0px) translate(8px,-189px) translateZ(0px) scale(1,1) skew(0deg) rotateX(0deg) rotateY(0deg) rotate(53deg) ;} 10 | 100% {width:30px;height:600px;-webkit-transform:perspective(0px) translate(8px,-189px) translateZ(0px) scale(1,1) skew(0deg) rotateX(0deg) rotateY(0deg) rotate(53deg) ;} 11 | } 12 | @-moz-keyframes frame_layer_0 { 13 | 0% {width:30px;height:600px;-moz-transform:perspective(0px) translate(8px,-189px) translateZ(0px) scale(1,1) skew(0deg) rotateX(0deg) rotateY(0deg) rotate(53deg) ;} 14 | 100% {width:30px;height:600px;-moz-transform:perspective(0px) translate(8px,-189px) translateZ(0px) scale(1,1) skew(0deg) rotateX(0deg) rotateY(0deg) rotate(53deg) ;} 15 | } 16 | .mod_canvas .layer_1{ 17 | position:absolute;left:336px;top:205px;background-size:100% 100%;background-image:url(../../project/21/minhand.png); 18 | -webkit-animation: frame_layer_1 1s infinite;-webkit-animation-fill-mode:both; 19 | -moz-animation: frame_layer_1 1s infinite;-moz-animation-fill-mode:both; 20 | 21 | } 22 | @-webkit-keyframes frame_layer_1 { 23 | 0% {width:30px;height:600px;-webkit-transform:perspective(0px) translate(-48px,-208px) translateZ(0px) scale(1,1) skew(0deg) rotateX(0deg) rotateY(0deg) rotate(-59deg) ;} 24 | 100% {width:30px;height:600px;-webkit-transform:perspective(0px) translate(-48px,-208px) translateZ(0px) scale(1,1) skew(0deg) rotateX(0deg) rotateY(0deg) rotate(-59deg) ;} 25 | } 26 | @-moz-keyframes frame_layer_1 { 27 | 0% {width:30px;height:600px;-moz-transform:perspective(0px) translate(-48px,-208px) translateZ(0px) scale(1,1) skew(0deg) rotateX(0deg) rotateY(0deg) rotate(-59deg) ;} 28 | 100% {width:30px;height:600px;-moz-transform:perspective(0px) translate(-48px,-208px) translateZ(0px) scale(1,1) skew(0deg) rotateX(0deg) rotateY(0deg) rotate(-59deg) ;} 29 | } 30 | .mod_canvas .layer_2{ 31 | position:absolute;left:276px;top:-19px;background-size:100% 100%;background-image:url(../../project/21/sechand.png); 32 | -webkit-animation: frame_layer_2 60s infinite Linear;-webkit-animation-fill-mode:both; 33 | -moz-animation: frame_layer_2 60s infinite Linear;-moz-animation-fill-mode:both; 34 | 35 | } 36 | @-webkit-keyframes frame_layer_2 { 37 | 0% {width:30px;height:600px;-webkit-transform:perspective(0px) translate(9px,12px) translateZ(0px) scale(1,1) skew(0deg) rotateX(0deg) rotateY(0deg) rotate(0deg) ;} 38 | 100% {width:30px;height:600px;-webkit-transform:perspective(0px) translate(9px,12px) translateZ(0px) scale(1,1) skew(0deg) rotateX(0deg) rotateY(0deg) rotate(360deg) ;} 39 | } 40 | @-moz-keyframes frame_layer_2 { 41 | 0% {width:30px;height:600px;-moz-transform:perspective(0px) translate(9px,12px) translateZ(0px) scale(1,1) skew(0deg) rotateX(0deg) rotateY(0deg) rotate(0deg) ;} 42 | 100% {width:30px;height:600px;-moz-transform:perspective(0px) translate(9px,12px) translateZ(0px) scale(1,1) skew(0deg) rotateX(0deg) rotateY(0deg) rotate(360deg) ;} 43 | } 44 | -------------------------------------------------------------------------------- /server/project/21/hourhand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/21/hourhand.png -------------------------------------------------------------------------------- /server/project/21/html.txt: -------------------------------------------------------------------------------- 1 |
    2 |
    3 |
    4 |
    5 |
    6 | -------------------------------------------------------------------------------- /server/project/21/list.json: -------------------------------------------------------------------------------- 1 | [{"name":"sechand.png","thumb_name":"sechand.png","thumb_width":30,"thumb_height":600,"width":30,"height":600},{"name":"minhand.png","thumb_name":"minhand.png","thumb_width":30,"thumb_height":600,"width":30,"height":600},{"name":"hourhand.png","thumb_name":"hourhand.png","thumb_width":30,"thumb_height":600,"width":30,"height":600},{"name":"clockface.jpg","thumb_name":"_thumb_clockface.jpg","thumb_width":100,"thumb_height":100,"width":600,"height":600}] -------------------------------------------------------------------------------- /server/project/21/minhand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/21/minhand.png -------------------------------------------------------------------------------- /server/project/21/project.json: -------------------------------------------------------------------------------- 1 | {"project_info":{"id":21,"name":"\u65f6\u949f","author":"","privacy":0,"time_add":1336551661,"time_save":1337825269,"del_flag":0,"layer_count":3},"time_scale_data":{"count":50,"margin":99,"interval":10},"canvas_data":{"width":600,"height":600,"background_type":1,"background_color":"#fff","background_image":"clockface.jpg"},"layer_data":[{"id":"layer_0","name":"New_layer_2","iteration":"1","use_flag":1,"style":"{\"background_size_x\":100,\"background_size_y\":100,\"background_image\":\"hourhand.png\",\"left\":\"282px\",\"top\":\"183px\"}","frame":{"count":1,"data":[{"id":"frame_item_0","style":"{\"width\":\"30px\",\"height\":\"600px\",\"skew\":\"0\",\"scale_x\":\"1\",\"scale_y\":\"1\",\"rotate\":\"53\",\"translate_x\":\"8\",\"translate_y\":\"-189\"}","custom_style":"","time":"0"}]},"img":{"name":"hourhand.png","width":30,"height":600}},{"id":"layer_1","name":"New_layer_1","iteration":"1","use_flag":1,"style":"{\"background_size_x\":100,\"background_size_y\":100,\"background_image\":\"minhand.png\",\"left\":\"336px\",\"top\":\"205px\"}","frame":{"count":1,"data":[{"id":"frame_item_0","style":"{\"width\":\"30px\",\"height\":\"600px\",\"skew\":\"0\",\"scale_x\":\"1\",\"scale_y\":\"1\",\"rotate\":\"-59\",\"translate_x\":\"-48\",\"translate_y\":\"-208\"}","custom_style":"","time":"0"}]},"img":{"name":"minhand.png","width":30,"height":600}},{"id":"layer_2","name":"New_layer_0","iteration":"1","use_flag":1,"style":"{\"background_size_x\":100,\"background_size_y\":100,\"background_image\":\"sechand.png\",\"left\":\"276px\",\"top\":\"-19px\",\"animation_timing_function\":\"Linear\"}","frame":{"count":2,"data":[{"id":"frame_item_0","style":"{\"width\":\"30px\",\"height\":\"600px\",\"skew\":\"0\",\"scale_x\":\"1\",\"scale_y\":\"1\",\"rotate\":\"0\",\"translate_x\":\"9\",\"translate_y\":\"12\"}","custom_style":"","time":"0"},{"id":"frame_item_1","time":60,"style":"{\"width\":\"30px\",\"height\":\"600px\",\"skew\":\"0\",\"scale_x\":\"1\",\"scale_y\":\"1\",\"rotate\":\"360\",\"translate_x\":\"9\",\"translate_y\":\"12\",\"translate_z\":\"0\",\"rotate_x\":\"0\",\"rotate_y\":\"0\",\"perspective\":\"0\"}","custom_style":""}]},"img":{"name":"sechand.png","width":30,"height":600}}]} -------------------------------------------------------------------------------- /server/project/21/sechand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/21/sechand.png -------------------------------------------------------------------------------- /server/project/22/_thumb_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/22/_thumb_background.png -------------------------------------------------------------------------------- /server/project/22/_thumb_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/22/_thumb_foreground.png -------------------------------------------------------------------------------- /server/project/22/_thumb_midground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/22/_thumb_midground.png -------------------------------------------------------------------------------- /server/project/22/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/22/background.png -------------------------------------------------------------------------------- /server/project/22/css.txt: -------------------------------------------------------------------------------- 1 | .mod_canvas{background-position:center top;width:1000px;height:500px;background-color:#fff;background-image:url(../../project/22//background.png)} 2 | .mod_canvas .layer_0{ 3 | position:absolute;left:219px;top:0px;background-size:100% 100%;background-image:url(../../project/22/foreground.png); 4 | -webkit-animation: frame_layer_0 85.74s infinite Linear;-webkit-animation-fill-mode:both; 5 | -moz-animation: frame_layer_0 85.74s infinite Linear;-moz-animation-fill-mode:both; 6 | 7 | } 8 | @-webkit-keyframes frame_layer_0 { 9 | 0% {width:500px;height:500px;-webkit-transform:perspective(0px) translate(497px,-20px) translateZ(0px) scale(1,1) skew(0deg) rotateX(0deg) rotateY(0deg) rotate(0deg) ;} 10 | 100% {width:500px;height:500px;-webkit-transform:perspective(0px) translate(-1000px,0px) translateZ(0px) scale(1,1) skew(0deg) rotateX(0deg) rotateY(0deg) rotate(0deg) ;} 11 | } 12 | @-moz-keyframes frame_layer_0 { 13 | 0% {width:500px;height:500px;-moz-transform:perspective(0px) translate(497px,-20px) translateZ(0px) scale(1,1) skew(0deg) rotateX(0deg) rotateY(0deg) rotate(0deg) ;} 14 | 100% {width:500px;height:500px;-moz-transform:perspective(0px) translate(-1000px,0px) translateZ(0px) scale(1,1) skew(0deg) rotateX(0deg) rotateY(0deg) rotate(0deg) ;} 15 | } 16 | .mod_canvas .layer_1{ 17 | position:absolute;left:500px;top:0px;background-size:100% 100%;background-image:url(../../project/22/midground.png); 18 | -webkit-animation: frame_layer_1 101.49s infinite Linear;-webkit-animation-fill-mode:both; 19 | -moz-animation: frame_layer_1 101.49s infinite Linear;-moz-animation-fill-mode:both; 20 | 21 | } 22 | @-webkit-keyframes frame_layer_1 { 23 | 0% {width:500px;height:500px;-webkit-transform:perspective(0px) translate(-500px,6px) translateZ(0px) scale(1,1) skew(0deg) rotateX(0deg) rotateY(0deg) rotate(0deg) ;} 24 | 100% {width:500px;height:500px;-webkit-transform:perspective(0px) translate(-1002px,0px) translateZ(0px) scale(1,1) skew(0deg) rotateX(0deg) rotateY(0deg) rotate(0deg) ;} 25 | } 26 | @-moz-keyframes frame_layer_1 { 27 | 0% {width:500px;height:500px;-moz-transform:perspective(0px) translate(-500px,6px) translateZ(0px) scale(1,1) skew(0deg) rotateX(0deg) rotateY(0deg) rotate(0deg) ;} 28 | 100% {width:500px;height:500px;-moz-transform:perspective(0px) translate(-1002px,0px) translateZ(0px) scale(1,1) skew(0deg) rotateX(0deg) rotateY(0deg) rotate(0deg) ;} 29 | } 30 | -------------------------------------------------------------------------------- /server/project/22/foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/22/foreground.png -------------------------------------------------------------------------------- /server/project/22/html.txt: -------------------------------------------------------------------------------- 1 |
    2 |
    3 |
    4 |
    5 | -------------------------------------------------------------------------------- /server/project/22/list.json: -------------------------------------------------------------------------------- 1 | [{"name":"background.png","thumb_name":"_thumb_background.png","thumb_width":100,"thumb_height":100,"width":500,"height":500},{"name":"foreground.png","thumb_name":"_thumb_foreground.png","thumb_width":100,"thumb_height":100,"width":500,"height":500},{"name":"midground.png","thumb_name":"_thumb_midground.png","thumb_width":100,"thumb_height":100,"width":500,"height":500}] -------------------------------------------------------------------------------- /server/project/22/midground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/22/midground.png -------------------------------------------------------------------------------- /server/project/22/project.json: -------------------------------------------------------------------------------- 1 | {"project_info":{"id":22,"name":"\u81ea\u52a8\u6eda\u52a8_\u89c6\u5dee","author":"","privacy":0,"time_add":1336552339,"time_save":1337825258,"del_flag":0,"layer_count":2},"time_scale_data":{"count":50,"margin":94,"interval":20},"canvas_data":{"width":1000,"height":500,"background_type":1,"background_color":"#fff","background_image":"background.png"},"layer_data":[{"id":"layer_0","name":"New_layer_0","iteration":"1","use_flag":1,"style":"{\"background_size_x\":100,\"background_size_y\":100,\"background_image\":\"foreground.png\",\"left\":\"219px\",\"top\":\"0px\",\"animation_timing_function\":\"Linear\"}","frame":{"count":2,"data":[{"id":"frame_item_0","style":"{\"width\":\"500px\",\"height\":\"500px\",\"skew\":\"0\",\"scale_x\":\"1\",\"scale_y\":\"1\",\"rotate\":\"0\",\"translate_x\":\"497\",\"translate_y\":\"-20\"}","custom_style":"","time":"0"},{"id":"frame_item_1","time":"85.74","style":"{\"width\":\"500px\",\"height\":\"500px\",\"skew\":\"0\",\"scale_x\":\"1\",\"scale_y\":\"1\",\"rotate\":\"0\",\"translate_x\":\"-1000\",\"translate_y\":\"0\",\"translate_z\":\"0\",\"rotate_x\":\"0\",\"rotate_y\":\"0\",\"perspective\":\"0\"}","custom_style":""}]},"img":{"name":"foreground.png","width":500,"height":500}},{"id":"layer_1","name":"New_layer_1","iteration":"1","use_flag":1,"style":"{\"background_size_x\":100,\"background_size_y\":100,\"background_image\":\"midground.png\",\"left\":\"500px\",\"top\":\"0px\",\"animation_timing_function\":\"Linear\"}","frame":{"count":2,"data":[{"id":"frame_item_0","style":"{\"width\":\"500px\",\"height\":\"500px\",\"skew\":\"0\",\"scale_x\":\"1\",\"scale_y\":\"1\",\"rotate\":\"0\",\"translate_x\":\"-500\",\"translate_y\":\"6\"}","custom_style":"","time":"0"},{"id":"frame_item_1","time":"101.49","style":"{\"width\":\"500px\",\"height\":\"500px\",\"translate_x\":\"-1002\",\"translate_y\":\"0\",\"translate_z\":\"0\",\"rotate\":\"0\",\"rotate_x\":\"0\",\"rotate_y\":\"0\",\"skew\":\"0\",\"scale_x\":\"1\",\"scale_y\":\"1\",\"perspective\":\"0\"}","custom_style":""}]},"img":{"name":"midground.png","width":500,"height":500}}]} -------------------------------------------------------------------------------- /server/project/23/_thumb_coke-can.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/23/_thumb_coke-can.png -------------------------------------------------------------------------------- /server/project/23/_thumb_coke-label.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/23/_thumb_coke-label.jpg -------------------------------------------------------------------------------- /server/project/23/coke-can.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/23/coke-can.png -------------------------------------------------------------------------------- /server/project/23/coke-label.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/23/coke-label.jpg -------------------------------------------------------------------------------- /server/project/23/css.txt: -------------------------------------------------------------------------------- 1 | .mod_canvas{background-position:center top;width:500px;height:400px;background-color:#fff;} 2 | .mod_canvas .layer_1{ 3 | position:absolute;left:220px;top:105px;background-size:100% 100%;background-image:url(../../project/23/coke-label.jpg); 4 | -webkit-animation: frame_layer_1 8.94s infinite Linear alternate;-webkit-animation-fill-mode:both; 5 | -moz-animation: frame_layer_1 8.94s infinite Linear alternate;-moz-animation-fill-mode:both; 6 | 7 | background-size:auto;} 8 | @-webkit-keyframes frame_layer_1 { 9 | 0% {width:194px;height:336px;-webkit-transform:perspective(0px) translate(-138px,-75px) translateZ(0px) scale(1,1) skew(0deg) rotateX(0deg) rotateY(0deg) rotate(0deg) ;background-position:200px 0;} 10 | 100% {width:194px;height:336px;-webkit-transform:perspective(0px) translate(-138px,-75px) translateZ(0px) scale(1,1) skew(0deg) rotateX(0deg) rotateY(0deg) rotate(0deg) ;background-position:-536px 0;} 11 | } 12 | @-moz-keyframes frame_layer_1 { 13 | 0% {width:194px;height:336px;-moz-transform: translate(-138px,-75px) scale(1,1) skew(0deg) rotate(0deg) ;background-position:200px 0;} 14 | 100% {width:194px;height:336px;-moz-transform: translate(-138px,-75px) scale(1,1) skew(0deg) rotate(0deg) ;background-position:-536px 0;} 15 | } 16 | .mod_canvas .layer_2{ 17 | position:absolute;left:135px;top:30px;background-size:100% 100%;background-image:url(../../project/23/coke-can.png); 18 | -webkit-animation: frame_layer_2 1s infinite;-webkit-animation-fill-mode:both; 19 | -moz-animation: frame_layer_2 1s infinite;-moz-animation-fill-mode:both; 20 | 21 | } 22 | @-webkit-keyframes frame_layer_2 { 23 | 0% {width:194px;height:336px;-webkit-transform:perspective(0px) translate(-53px,0px) translateZ(0px) scale(1,1) skew(0deg) rotateX(0deg) rotateY(0deg) rotate(0deg) ;} 24 | 100% {width:194px;height:336px;-webkit-transform:perspective(0px) translate(-53px,0px) translateZ(0px) scale(1,1) skew(0deg) rotateX(0deg) rotateY(0deg) rotate(0deg) ;} 25 | } 26 | @-moz-keyframes frame_layer_2 { 27 | 0% {width:194px;height:336px;-moz-transform: translate(-53px,0px) scale(1,1) skew(0deg) rotate(0deg) ;} 28 | 100% {width:194px;height:336px;-moz-transform: translate(-53px,0px) scale(1,1) skew(0deg) rotate(0deg) ;} 29 | } 30 | -------------------------------------------------------------------------------- /server/project/23/html.txt: -------------------------------------------------------------------------------- 1 |
    2 |
    3 |
    4 |
    5 | -------------------------------------------------------------------------------- /server/project/23/list.json: -------------------------------------------------------------------------------- 1 | [{"name":"coke-can.png","thumb_name":"_thumb_coke-can.png","thumb_width":100,"thumb_height":174,"width":194,"height":336},{"name":"coke-label.jpg","thumb_name":"_thumb_coke-label.jpg","thumb_width":100,"thumb_height":53,"width":537,"height":280}] -------------------------------------------------------------------------------- /server/project/23/project.json: -------------------------------------------------------------------------------- 1 | {"project_info":{"id":23,"name":"\u53ef\u53e3\u53ef\u4e50","author":"","privacy":0,"time_add":1336553092,"time_save":1338346280,"del_flag":0,"layer_count":3},"time_scale_data":{"count":50,"margin":99,"interval":0.5},"canvas_data":{"width":500,"height":400,"background_type":1,"background_color":"#fff","background_image":""},"layer_data":[{"id":"layer_1","name":"New_layer_2","iteration":"1","use_flag":1,"style":"{\"background_size_x\":100,\"background_size_y\":100,\"background_image\":\"coke-label.jpg\",\"left\":\"220px\",\"top\":\"105px\",\"animation_direction\":\"alternate\",\"animation_timing_function\":\"Linear\"}","frame":{"count":4,"data":[{"id":"frame_item_0","style":"{\"width\":\"194px\",\"height\":\"336px\",\"skew\":\"0\",\"scale_x\":\"1\",\"scale_y\":\"1\",\"rotate\":\"0\",\"translate_x\":\"-138\",\"translate_y\":\"-75\"}","custom_style":"background-position:200px 0;","time":"0"},{"id":"frame_item_3","time":"8.94","style":"{\"width\":\"194px\",\"height\":\"336px\",\"skew\":\"0\",\"scale_x\":\"1\",\"scale_y\":\"1\",\"rotate\":\"0\",\"translate_x\":\"-138\",\"translate_y\":\"-75\"}","custom_style":"background-position:-536px 0;"}]},"img":{"name":"coke-label.jpg","width":537,"height":280},"custom":"background-size:auto;"},{"id":"layer_2","name":"New_layer_1","iteration":"1","use_flag":1,"style":"{\"background_size_x\":100,\"background_size_y\":100,\"background_image\":\"coke-can.png\",\"left\":\"135px\",\"top\":\"30px\"}","frame":{"count":2,"data":[{"id":"frame_item_0","style":"{\"width\":\"194px\",\"height\":\"336px\",\"skew\":\"0\",\"scale_x\":\"1\",\"scale_y\":\"1\",\"rotate\":\"0\",\"translate_x\":\"-53\",\"translate_y\":\"0\",\"translate_z\":\"0\",\"rotate_x\":\"0\",\"rotate_y\":\"0\",\"perspective\":\"0\"}","custom_style":"","time":"0"}]},"img":{"name":"coke-can.png","width":194,"height":336}}]} -------------------------------------------------------------------------------- /server/project/24/_thumb_fog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/24/_thumb_fog.png -------------------------------------------------------------------------------- /server/project/24/_thumb_glow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/24/_thumb_glow.png -------------------------------------------------------------------------------- /server/project/24/_thumb_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/24/_thumb_light.png -------------------------------------------------------------------------------- /server/project/24/_thumb_stars-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/24/_thumb_stars-large.png -------------------------------------------------------------------------------- /server/project/24/_thumb_stars-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/24/_thumb_stars-small.png -------------------------------------------------------------------------------- /server/project/24/fog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/24/fog.png -------------------------------------------------------------------------------- /server/project/24/glow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/24/glow.png -------------------------------------------------------------------------------- /server/project/24/html.txt: -------------------------------------------------------------------------------- 1 |
    2 |
    3 |
    4 |
    5 |
    6 |
    7 |
    8 |
    9 |
    10 |
    11 | -------------------------------------------------------------------------------- /server/project/24/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/24/light.png -------------------------------------------------------------------------------- /server/project/24/list.json: -------------------------------------------------------------------------------- 1 | [{"name":"fog.png","thumb_name":"_thumb_fog.png","thumb_width":100,"thumb_height":80,"width":1000,"height":800},{"name":"light.png","thumb_name":"_thumb_light.png","thumb_width":100,"thumb_height":100,"width":269,"height":269},{"name":"stars-large.png","thumb_name":"_thumb_stars-large.png","thumb_width":100,"thumb_height":77,"width":573,"height":436},{"name":"stars-small.png","thumb_name":"_thumb_stars-small.png","thumb_width":100,"thumb_height":84,"width":832,"height":694},{"name":"glow.png","thumb_name":"_thumb_glow.png","thumb_width":100,"thumb_height":100,"width":800,"height":800}] -------------------------------------------------------------------------------- /server/project/24/stars-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/24/stars-large.png -------------------------------------------------------------------------------- /server/project/24/stars-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/24/stars-small.png -------------------------------------------------------------------------------- /server/project/25/_thumb_clockface.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/25/_thumb_clockface.jpg -------------------------------------------------------------------------------- /server/project/25/clockface.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/25/clockface.jpg -------------------------------------------------------------------------------- /server/project/25/css.txt: -------------------------------------------------------------------------------- 1 | .mod_canvas{width:400px;height:300px;background-color:#fff;} 2 | -------------------------------------------------------------------------------- /server/project/25/hourhand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/25/hourhand.png -------------------------------------------------------------------------------- /server/project/25/html.txt: -------------------------------------------------------------------------------- 1 |
    2 |
    3 | -------------------------------------------------------------------------------- /server/project/25/index.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Project_0518 6 | 7 | 38 | 39 | 40 | 41 | 42 | 43 | 44 |
    45 |
    46 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /server/project/25/list.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /server/project/25/minhand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/25/minhand.png -------------------------------------------------------------------------------- /server/project/25/project.json: -------------------------------------------------------------------------------- 1 | {"project_info":{"id":25,"name":"Project_0518","author":"harika","privacy":0,"time_add":1337324563,"time_save":1337324617,"del_flag":0,"layer_count":0},"time_scale_data":{"count":50,"margin":100,"interval":0.5},"canvas_data":{"width":400,"height":300,"background_type":1,"background_color":"#fff","background_image":""},"layer_data":[]} -------------------------------------------------------------------------------- /server/project/25/sechand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/25/sechand.png -------------------------------------------------------------------------------- /server/project/26/css.txt: -------------------------------------------------------------------------------- 1 | .mod_canvas{width:400px;height:300px;background-color:#fff;} 2 | -------------------------------------------------------------------------------- /server/project/26/html.txt: -------------------------------------------------------------------------------- 1 |
    2 |
    3 | -------------------------------------------------------------------------------- /server/project/26/index.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Project_s5s5 6 | 7 | 38 | 39 | 40 | 41 | 42 | 43 | 44 |
    45 |
    46 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /server/project/26/list.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /server/project/26/project.json: -------------------------------------------------------------------------------- 1 | {"project_info":{"id":26,"name":"Project_s5s5","author":"s5s5","privacy":0,"time_add":1337324689,"time_save":1337324862,"del_flag":0,"layer_count":0},"time_scale_data":{"count":50,"margin":100,"interval":0.5},"canvas_data":{"width":400,"height":300,"background_type":1,"background_color":"#fff","background_image":""},"layer_data":[]} -------------------------------------------------------------------------------- /server/project/27/_thumb_a2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/27/_thumb_a2.png -------------------------------------------------------------------------------- /server/project/27/_thumb_a3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/27/_thumb_a3.png -------------------------------------------------------------------------------- /server/project/27/_thumb_a4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/27/_thumb_a4.png -------------------------------------------------------------------------------- /server/project/27/_thumb_a_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/27/_thumb_a_bg.jpg -------------------------------------------------------------------------------- /server/project/27/a1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/27/a1.png -------------------------------------------------------------------------------- /server/project/27/a2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/27/a2.png -------------------------------------------------------------------------------- /server/project/27/a3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/27/a3.png -------------------------------------------------------------------------------- /server/project/27/a4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/27/a4.png -------------------------------------------------------------------------------- /server/project/27/a5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/27/a5.png -------------------------------------------------------------------------------- /server/project/27/a_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/27/a_bg.jpg -------------------------------------------------------------------------------- /server/project/27/html.txt: -------------------------------------------------------------------------------- 1 |
    2 |
    3 |
    4 |
    5 |
    6 |
    7 |
    8 | -------------------------------------------------------------------------------- /server/project/27/list.json: -------------------------------------------------------------------------------- 1 | [{"name":"a1.png","thumb_name":"a1.png","thumb_width":70,"thumb_height":97,"width":70,"height":97},{"name":"a2.png","thumb_name":"_thumb_a2.png","thumb_width":100,"thumb_height":50,"width":291,"height":145},{"name":"a_bg.jpg","thumb_name":"_thumb_a_bg.jpg","thumb_width":100,"thumb_height":34,"width":1200,"height":400},{"name":"a3.png","thumb_name":"_thumb_a3.png","thumb_width":100,"thumb_height":16,"width":496,"height":76},{"name":"a4.png","thumb_name":"_thumb_a4.png","thumb_width":100,"thumb_height":28,"width":246,"height":67},{"name":"a5.png","thumb_name":"a5.png","thumb_width":85,"thumb_height":57,"width":85,"height":57}] -------------------------------------------------------------------------------- /server/project/28/1111.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/28/1111.jpg -------------------------------------------------------------------------------- /server/project/28/_thumb_1111.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/28/_thumb_1111.jpg -------------------------------------------------------------------------------- /server/project/28/_thumb_children_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/28/_thumb_children_star.png -------------------------------------------------------------------------------- /server/project/28/_thumb_cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/28/_thumb_cloud.png -------------------------------------------------------------------------------- /server/project/28/_thumb_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/28/_thumb_title.png -------------------------------------------------------------------------------- /server/project/28/_thumb_閸忣厺绔撮崕璺仮閼哄倹娓剁紒鍫㈩焾bg_04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/28/_thumb_閸忣厺绔撮崕璺仮閼哄倹娓剁紒鍫㈩焾bg_04.jpg -------------------------------------------------------------------------------- /server/project/28/btn_share_done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/28/btn_share_done.png -------------------------------------------------------------------------------- /server/project/28/children_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/28/children_star.png -------------------------------------------------------------------------------- /server/project/28/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/28/cloud.png -------------------------------------------------------------------------------- /server/project/28/html.txt: -------------------------------------------------------------------------------- 1 |
    2 |
    3 |
    4 |
    5 |
    6 | -------------------------------------------------------------------------------- /server/project/28/list.json: -------------------------------------------------------------------------------- 1 | [{"name":"children_star.png","thumb_name":"_thumb_children_star.png","thumb_width":100,"thumb_height":124,"width":143,"height":177},{"name":"cloud.png","thumb_name":"_thumb_cloud.png","thumb_width":100,"thumb_height":10,"width":379,"height":36},{"name":"title.png","thumb_name":"_thumb_title.png","thumb_width":100,"thumb_height":45,"width":380,"height":171},{"name":"\u516d\u4e00\u513f\u7ae5\u8282\u6700\u7ec8\u7a3fbg_04.jpg","thumb_name":"_thumb_\u516d\u4e00\u513f\u7ae5\u8282\u6700\u7ec8\u7a3fbg_04.jpg","thumb_width":100,"thumb_height":30,"width":1024,"height":304},{"name":"1111.jpg","thumb_name":"_thumb_1111.jpg","thumb_width":100,"thumb_height":30,"width":1024,"height":304}] -------------------------------------------------------------------------------- /server/project/28/project.json: -------------------------------------------------------------------------------- 1 | {"project_info":{"id":28,"name":"Project_0524","author":"yettazhou","privacy":0,"time_add":1337825953,"time_save":1337912541,"del_flag":0,"layer_count":9},"time_scale_data":{"count":50,"margin":100,"interval":0.5},"canvas_data":{"width":1024,"height":304,"background_type":1,"background_color":"#fff","background_image":"1111.jpg"},"layer_data":[{"id":"layer_6","name":"New_layer_8","iteration":"1","use_flag":1,"style":"{\"width\":\"379px\",\"height\":\"36px\",\"background_size_x\":100,\"background_size_y\":100,\"background_image\":\"cloud.png\",\"left\":\"147px\",\"top\":\"25px\",\"animation_timing_function\":\"Linear\"}","frame":{"count":3,"data":[{"id":"frame_item_0","style":"{\"width\":\"379px\",\"height\":\"36px\",\"skew\":\"0\",\"scale_x\":\"1\",\"scale_y\":\"1\",\"rotate\":\"0\",\"translate_x\":\"-92\",\"translate_y\":\"-18\"}","custom_style":"","time":1.5},{"id":"frame_item_1","time":3,"style":"{\"width\":\"379px\",\"height\":\"36px\",\"skew\":\"0\",\"scale_x\":\"1\",\"scale_y\":\"1\",\"rotate\":\"0\",\"translate_x\":\"-32\",\"translate_y\":\"-18\"}","custom_style":""},{"id":"frame_item_2","time":4.5,"style":"{\"width\":\"379px\",\"height\":\"36px\",\"skew\":\"0\",\"scale_x\":\"1\",\"scale_y\":\"1\",\"rotate\":\"0\",\"translate_x\":\"-92\",\"translate_y\":\"-18\"}","custom_style":""}]},"img":{"name":"cloud.png","width":379,"height":36}},{"id":"layer_7","name":"New_layer_5","iteration":"1","use_flag":1,"style":"{\"width\":\"143px\",\"height\":\"177px\",\"background_size_x\":100,\"background_size_y\":100,\"background_image\":\"children_star.png\",\"left\":\"159px\",\"top\":\"86px\",\"animation_iteration\":\"1\"}","frame":{"count":3,"data":[{"custom_style":"","id":"frame_item_0","style":"{\"translate_x\":\"-20\",\"width\":\"143px\",\"height\":\"177px\",\"opacity\":\"0.00\",\"skew\":\"0\",\"scale_x\":\"1\",\"scale_y\":\"1\",\"rotate\":\"0\",\"translate_y\":\"0\"}","time":0},{"custom_style":"","id":"frame_item_1","style":"{\"opacity\":\"1\",\"translate_x\":\"213\",\"width\":\"143px\",\"height\":\"177px\",\"skew\":\"0\",\"scale_x\":\"1\",\"scale_y\":\"1\",\"rotate\":\"0\",\"translate_y\":\"-69\"}","time":"1.06"},{"id":"frame_item_2","time":"-0.01","style":"{\"translate_x\":\"-20\",\"width\":\"143px\",\"height\":\"177px\"}","custom_style":""}]},"img":{"name":"children_star.png","width":143,"height":177}},{"id":"layer_8","name":"New_layer_6","iteration":"1","use_flag":1,"style":"{\"width\":\"380px\",\"height\":\"171px\",\"background_size_x\":100,\"background_size_y\":100,\"background_image\":\"title.png\",\"left\":\"278px\",\"top\":\"106px\"}","frame":{"count":1,"data":[{"id":"frame_item_0","style":"{\"width\":\"380px\",\"height\":\"171px\",\"skew\":\"0\",\"scale_x\":\"1\",\"scale_y\":\"1\",\"rotate\":\"0\",\"translate_x\":\"-164\",\"translate_y\":\"-59\"}","custom_style":"","time":"0"}]},"img":{"name":"title.png","width":380,"height":171}}]} -------------------------------------------------------------------------------- /server/project/28/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/28/title.png -------------------------------------------------------------------------------- /server/project/28/閸忣厺绔撮崕璺仮閼哄倹娓剁紒鍫㈩焾bg_04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/28/閸忣厺绔撮崕璺仮閼哄倹娓剁紒鍫㈩焾bg_04.jpg -------------------------------------------------------------------------------- /server/project/29/111.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/29/111.jpg -------------------------------------------------------------------------------- /server/project/29/_thumb_111.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/29/_thumb_111.jpg -------------------------------------------------------------------------------- /server/project/29/_thumb_children_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/29/_thumb_children_star.png -------------------------------------------------------------------------------- /server/project/29/_thumb_cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/29/_thumb_cloud.png -------------------------------------------------------------------------------- /server/project/29/_thumb_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/29/_thumb_title.png -------------------------------------------------------------------------------- /server/project/29/children_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/29/children_star.png -------------------------------------------------------------------------------- /server/project/29/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/29/cloud.png -------------------------------------------------------------------------------- /server/project/29/html.txt: -------------------------------------------------------------------------------- 1 |
    2 |
    3 |
    4 |
    5 |
    6 | -------------------------------------------------------------------------------- /server/project/29/list.json: -------------------------------------------------------------------------------- 1 | [{"name":"children_star.png","thumb_name":"_thumb_children_star.png","thumb_width":100,"thumb_height":124,"width":143,"height":177},{"name":"cloud.png","thumb_name":"_thumb_cloud.png","thumb_width":100,"thumb_height":10,"width":379,"height":36},{"name":"title.png","thumb_name":"_thumb_title.png","thumb_width":100,"thumb_height":45,"width":380,"height":171},{"name":"111.jpg","thumb_name":"_thumb_111.jpg","thumb_width":100,"thumb_height":30,"width":1024,"height":303}] -------------------------------------------------------------------------------- /server/project/29/project.json: -------------------------------------------------------------------------------- 1 | {"project_info":{"id":29,"name":"appstore \u516d\u4e00\u6d3b\u52a8","author":"yettazhou","privacy":0,"time_add":1337909143,"time_save":1338346056,"del_flag":0,"layer_count":3},"time_scale_data":{"count":50,"margin":100,"interval":0.5},"canvas_data":{"width":1024,"height":303,"background_type":1,"background_color":"#fff","background_image":"111.jpg"},"layer_data":[{"id":"layer_0","name":"New_layer_0","iteration":"1","use_flag":1,"style":"{\"width\":\"379px\",\"height\":\"36px\",\"background_size_x\":100,\"background_size_y\":100,\"background_image\":\"cloud.png\",\"left\":\"59px\",\"top\":\"8px\",\"animation_timing_function\":\"Linear\"}","frame":{"count":3,"data":[{"id":"frame_item_0","style":"{\"width\":\"379px\",\"height\":\"36px\",\"skew\":\"0\",\"scale_x\":\"1\",\"scale_y\":\"1\",\"rotate\":\"0\",\"translate_x\":\"0\",\"translate_y\":\"0\",\"translate_z\":\"0\",\"rotate_x\":\"0\",\"rotate_y\":\"0\",\"perspective\":\"0\"}","custom_style":"","time":1.5},{"id":"frame_item_1","time":4.5,"style":"{\"width\":\"379px\",\"height\":\"36px\",\"skew\":\"0\",\"scale_x\":\"1\",\"scale_y\":\"1\",\"rotate\":\"0\",\"translate_x\":\"0\",\"translate_y\":\"0\",\"translate_z\":\"0\",\"rotate_x\":\"0\",\"rotate_y\":\"0\",\"perspective\":\"0\"}","custom_style":""},{"id":"frame_item_2","time":"3.06","style":"{\"width\":\"379px\",\"height\":\"36px\",\"skew\":\"0\",\"scale_x\":\"1\",\"scale_y\":\"1\",\"rotate\":\"0\",\"translate_x\":\"80\",\"translate_y\":\"0\",\"translate_z\":\"0\",\"rotate_x\":\"0\",\"rotate_y\":\"0\",\"perspective\":\"0\"}","custom_style":""}]},"img":{"name":"cloud.png","width":379,"height":36}},{"id":"layer_1","name":"New_layer_2","iteration":"1","use_flag":1,"style":"{\"width\":\"143px\",\"height\":\"177px\",\"background_size_x\":100,\"background_size_y\":100,\"background_image\":\"children_star.png\",\"left\":\"372px\",\"top\":\"17px\",\"animation_iteration\":\"1\"}","frame":{"count":2,"data":[{"custom_style":"","id":"frame_item_0","style":"{\"translate_x\":\"-263\",\"width\":\"143px\",\"height\":\"177px\",\"skew\":\"0\",\"scale_x\":\"1\",\"scale_y\":\"1\",\"rotate\":\"0\",\"translate_y\":\"92\",\"translate_z\":\"0\",\"rotate_x\":\"0\",\"rotate_y\":\"0\",\"perspective\":\"0\",\"opacity\":\"0.00\"}","time":0},{"custom_style":"","id":"frame_item_1","style":"{\"opacity\":\"1\",\"translate_x\":\"0\",\"width\":\"143px\",\"height\":\"177px\",\"skew\":\"0\",\"scale_x\":\"1\",\"scale_y\":\"1\",\"rotate\":\"0\",\"translate_y\":\"0\",\"translate_z\":\"0\",\"rotate_x\":\"0\",\"rotate_y\":\"0\",\"perspective\":\"0\"}","time":1}]},"img":{"name":"children_star.png","width":143,"height":177}},{"id":"layer_2","name":"New_layer_1","iteration":"1","use_flag":1,"style":"{\"width\":\"380px\",\"height\":\"171px\",\"background_size_x\":100,\"background_size_y\":100,\"background_image\":\"title.png\",\"left\":\"110px\",\"top\":\"48px\"}","frame":{"count":1,"data":[{"id":"frame_item_0","style":"{\"width\":\"380px\",\"height\":\"171px\",\"skew\":\"0\",\"scale_x\":\"1\",\"scale_y\":\"1\",\"rotate\":\"0\",\"translate_x\":\"0\",\"translate_y\":\"0\",\"translate_z\":\"0\",\"rotate_x\":\"0\",\"rotate_y\":\"0\",\"perspective\":\"0\"}","custom_style":"","time":"0"}]},"img":{"name":"title.png","width":380,"height":171}}]} -------------------------------------------------------------------------------- /server/project/29/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/29/title.png -------------------------------------------------------------------------------- /server/project/3/_thumb_schedule.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/3/_thumb_schedule.jpg -------------------------------------------------------------------------------- /server/project/3/_thumb_teachers_list.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/3/_thumb_teachers_list.jpg -------------------------------------------------------------------------------- /server/project/3/a_teachers_list_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/3/a_teachers_list_star.png -------------------------------------------------------------------------------- /server/project/3/content-close-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/3/content-close-24.png -------------------------------------------------------------------------------- /server/project/3/css.txt: -------------------------------------------------------------------------------- 1 | .mod_canvas{width:400px;height:300px;background-color:#fff;} 2 | .mod_canvas .layer_3{ 3 | position:absolute;left:264px;top:181px;background-size:100% 100%;background-image:url(../../project/3/content-close-24.png); 4 | -webkit-animation: frame_layer_3 1.25s 1 Linear 0.84s; 5 | -moz-animation: frame_layer_3 1.25s 1 Linear 0.84s; 6 | 7 | } 8 | @-webkit-keyframes frame_layer_3 { 9 | 0% {width:84px;height:58px;-webkit-transform:perspective(0px) translate(0px,0px) translateZ(0px) scale(1.1,1) skew(0deg) rotateX(0deg) rotateY(0deg) rotate(-3deg) ;} 10 | 12% {width:84px;height:58px;-webkit-transform:perspective(0px) translate(0px,0px) translateZ(0px) scale(1.1,1) skew(0deg) rotateX(0deg) rotateY(0deg) rotate(3deg) ;} 11 | 23.2% {width:84px;height:58px;-webkit-transform:perspective(0px) translate(0px,0px) translateZ(0px) scale(1.1,1) skew(0deg) rotateX(0deg) rotateY(0deg) rotate(-3deg) ;} 12 | 36% {width:84px;height:58px;-webkit-transform:perspective(0px) translate(0px,0px) translateZ(0px) scale(1.1,1) skew(0deg) rotateX(0deg) rotateY(0deg) rotate(3deg) ;} 13 | 54.4% {width:84px;height:58px;-webkit-transform:perspective(0px) translate(0px,0px) translateZ(0px) scale(1.1,1) skew(0deg) rotateX(0deg) rotateY(0deg) rotate(-3deg) ;} 14 | 78.4% {width:84px;height:58px;-webkit-transform:perspective(0px) translate(0px,0px) translateZ(0px) scale(1.1,1) skew(0deg) rotateX(0deg) rotateY(0deg) rotate(3deg) ;} 15 | 100% {width:84px;height:58px;-webkit-transform:perspective(0px) translate(-47px,-104px) translateZ(0px) scale(1,1) skew(0deg) rotateX(0deg) rotateY(0deg) rotate(0deg) ;} 16 | } 17 | @-moz-keyframes frame_layer_3 { 18 | 0% {width:84px;height:58px;-moz-transform:perspective(0px) translate(0px,0px) translateZ(0px) scale(1.1,1) skew(0deg) rotateX(0deg) rotateY(0deg) rotate(-3deg) ;} 19 | 12% {width:84px;height:58px;-moz-transform:perspective(0px) translate(0px,0px) translateZ(0px) scale(1.1,1) skew(0deg) rotateX(0deg) rotateY(0deg) rotate(3deg) ;} 20 | 23.2% {width:84px;height:58px;-moz-transform:perspective(0px) translate(0px,0px) translateZ(0px) scale(1.1,1) skew(0deg) rotateX(0deg) rotateY(0deg) rotate(-3deg) ;} 21 | 36% {width:84px;height:58px;-moz-transform:perspective(0px) translate(0px,0px) translateZ(0px) scale(1.1,1) skew(0deg) rotateX(0deg) rotateY(0deg) rotate(3deg) ;} 22 | 54.4% {width:84px;height:58px;-moz-transform:perspective(0px) translate(0px,0px) translateZ(0px) scale(1.1,1) skew(0deg) rotateX(0deg) rotateY(0deg) rotate(-3deg) ;} 23 | 78.4% {width:84px;height:58px;-moz-transform:perspective(0px) translate(0px,0px) translateZ(0px) scale(1.1,1) skew(0deg) rotateX(0deg) rotateY(0deg) rotate(3deg) ;} 24 | 100% {width:84px;height:58px;-moz-transform:perspective(0px) translate(-47px,-104px) translateZ(0px) scale(1,1) skew(0deg) rotateX(0deg) rotateY(0deg) rotate(0deg) ;} 25 | } 26 | -------------------------------------------------------------------------------- /server/project/3/html.txt: -------------------------------------------------------------------------------- 1 |
    2 |
    3 |
    4 | -------------------------------------------------------------------------------- /server/project/3/list.json: -------------------------------------------------------------------------------- 1 | [{"name":"schedule.jpg","thumb_name":"_thumb_schedule.jpg","thumb_width":100,"thumb_height":72,"width":960,"height":689},{"name":"teachers_list.jpg","thumb_name":"_thumb_teachers_list.jpg","thumb_width":100,"thumb_height":64,"width":1280,"height":807},{"name":"a_teachers_list_star.png","thumb_name":"a_teachers_list_star.png","thumb_width":15,"thumb_height":15,"width":15,"height":15},{"name":"content-close-24.png","thumb_name":"content-close-24.png","thumb_width":84,"thumb_height":58,"width":84,"height":58}] -------------------------------------------------------------------------------- /server/project/3/project.json: -------------------------------------------------------------------------------- 1 | {"project_info":{"id":3,"name":"test1","author":"","privacy":"1","time_add":1335951071,"time_save":1336447587,"del_flag":0,"layer_count":5},"time_scale_data":{"count":50,"margin":100,"interval":0.5},"canvas_data":{"width":400,"height":300,"background_type":1,"background_color":"#fff","background_image":""},"layer_data":[{"id":"layer_3","name":"New_layer_3","iteration":"1","use_flag":1,"style":"{\"background_size_x\":100,\"background_size_y\":100,\"background_image\":\"content-close-24.png\",\"left\":\"264px\",\"top\":\"181px\",\"animation_iteration\":\"1\",\"animation_timing_function\":\"Linear\"}","frame":{"count":11,"data":[{"custom_style":"","id":"frame_item_4","style":"{\"scale_x\":\"1.1\",\"rotate\":\"-3\",\"width\":\"84px\",\"height\":\"58px\",\"skew\":\"0\",\"scale_y\":\"1\",\"translate_x\":\"0\",\"translate_y\":\"0\"}","time":"0.84"},{"custom_style":"","id":"frame_item_5","style":"{\"scale_x\":\"1.1\",\"rotate\":\"3\",\"width\":\"84px\",\"height\":\"58px\"}","time":"0.99"},{"custom_style":"","id":"frame_item_6","style":"{\"scale_x\":\"1.1\",\"rotate\":\"-3\",\"width\":\"84px\",\"height\":\"58px\"}","time":"1.13"},{"custom_style":"","id":"frame_item_7","style":"{\"scale_x\":\"1.1\",\"rotate\":\"3\",\"width\":\"84px\",\"height\":\"58px\"}","time":"1.29"},{"custom_style":"","id":"frame_item_8","style":"{\"scale_x\":\"1.1\",\"rotate\":\"-3\",\"width\":\"84px\",\"height\":\"58px\"}","time":"1.52"},{"custom_style":"","id":"frame_item_9","style":"{\"scale_x\":\"1.1\",\"rotate\":\"3\",\"width\":\"84px\",\"height\":\"58px\"}","time":"1.82"},{"custom_style":"","id":"frame_item_10","style":"{\"width\":\"84px\",\"height\":\"58px\",\"skew\":\"0\",\"scale_x\":\"1\",\"scale_y\":\"1\",\"rotate\":\"0\",\"translate_x\":\"-47\",\"translate_y\":\"-104\"}","time":"2.09"}]},"img":{"name":"content-close-24.png","width":84,"height":58}}]} -------------------------------------------------------------------------------- /server/project/3/schedule.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/3/schedule.jpg -------------------------------------------------------------------------------- /server/project/3/teachers_list.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/3/teachers_list.jpg -------------------------------------------------------------------------------- /server/project/30/123是的.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/30/123是的.jpg -------------------------------------------------------------------------------- /server/project/30/asd_123.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/30/asd_123.jpg -------------------------------------------------------------------------------- /server/project/30/list.json: -------------------------------------------------------------------------------- 1 | [{"name":"123\u662f\u7684.jpg","thumb_name":"123\u662f\u7684.jpg","thumb_width":55,"thumb_height":55,"width":55,"height":55},{"name":"asd_123.jpg","thumb_name":"asd_123.jpg","thumb_width":55,"thumb_height":55,"width":55,"height":55}] -------------------------------------------------------------------------------- /server/project/30/project.json: -------------------------------------------------------------------------------- 1 | {"project_info":{"id":30,"name":"Project_0711","author":"","privacy":0,"time_add":1341976148,"time_save":"","del_flag":0,"layer_count":0},"canvas_data":{"width":400,"height":300,"background_type":1,"background_color":"#fff","background_image":""}} -------------------------------------------------------------------------------- /server/project/4/_thumb_header1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/4/_thumb_header1.png -------------------------------------------------------------------------------- /server/project/4/_thumb_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/4/_thumb_light.png -------------------------------------------------------------------------------- /server/project/4/css.txt: -------------------------------------------------------------------------------- 1 | .mod_canvas{width:1280px;height:300px;background-color:#ffffff;} 2 | .mod_canvas .layer_4{ 3 | position:absolute;left:33px;top:1px;background-size:100% 100%;background-image:url(../../project/4/light.png); 4 | -webkit-animation: frame_layer_4 3s infinite Ease-out; 5 | -moz-animation: frame_layer_4 3s infinite Ease-out; 6 | 7 | } 8 | @-webkit-keyframes frame_layer_4 { 9 | 0% {opacity:1;width:1200px;height:425px;} 10 | 8.3333333333333% {opacity:0.5;width:1200px;height:425px;} 11 | 16.666666666667% {opacity:1;width:1200px;height:425px;} 12 | 25% {opacity:0.5;width:1200px;height:425px;} 13 | 100% {opacity:1;width:1200px;height:425px;} 14 | } 15 | @-moz-keyframes frame_layer_4 { 16 | 0% {opacity:1;width:1200px;height:425px;} 17 | 8.3333333333333% {opacity:0.5;width:1200px;height:425px;} 18 | 16.666666666667% {opacity:1;width:1200px;height:425px;} 19 | 25% {opacity:0.5;width:1200px;height:425px;} 20 | 100% {opacity:1;width:1200px;height:425px;} 21 | } 22 | .mod_canvas .layer_5{ 23 | position:absolute;left:-7px;top:11px;background-size:100% 100%;background-image:url(../../project/4/header1.png); 24 | -webkit-animation: frame_layer_5 1s infinite; 25 | -moz-animation: frame_layer_5 1s infinite; 26 | 27 | } 28 | @-webkit-keyframes frame_layer_5 { 29 | 0% {width:1200px;height:330px;-webkit-transform:translate(27px,-9px) scale(1,1) skew(0deg) rotate(0deg);} 30 | 100% {width:1200px;height:330px;-webkit-transform:translate(27px,-9px) scale(1,1) skew(0deg) rotate(0deg);} 31 | } 32 | @-moz-keyframes frame_layer_5 { 33 | 0% {width:1200px;height:330px;-moz-transform:translate(27px,-9px) scale(1,1) skew(0deg) rotate(0deg);} 34 | 100% {width:1200px;height:330px;-moz-transform:translate(27px,-9px) scale(1,1) skew(0deg) rotate(0deg);} 35 | } 36 | -------------------------------------------------------------------------------- /server/project/4/header1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/4/header1.png -------------------------------------------------------------------------------- /server/project/4/html.txt: -------------------------------------------------------------------------------- 1 |
    2 |
    3 |
    4 |
    5 | -------------------------------------------------------------------------------- /server/project/4/index.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | New_Project 6 | 7 | 72 | 73 | 74 | 75 | 76 | 77 | 78 |
    79 |
    80 |
    81 |
    82 | 83 | 84 | 85 | -------------------------------------------------------------------------------- /server/project/4/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/4/light.png -------------------------------------------------------------------------------- /server/project/4/list.json: -------------------------------------------------------------------------------- 1 | [{"name":"header1.png","thumb_name":"_thumb_header1.png","thumb_width":100,"thumb_height":28,"width":1200,"height":330},{"name":"light.png","thumb_name":"_thumb_light.png","thumb_width":100,"thumb_height":36,"width":1200,"height":425}] -------------------------------------------------------------------------------- /server/project/4/project.json: -------------------------------------------------------------------------------- 1 | {"project_info":{"id":4,"name":"New_Project","author":"","privacy":"1","time_add":1335954346,"time_save":1336119685,"del_flag":0,"layer_count":6},"time_scale_data":{"count":50,"margin":95,"interval":10},"canvas_data":{"width":1280,"height":300,"background_type":1,"background_color":"#ffffff","background_image":""},"layer_data":[{"id":"layer_4","name":"New_layer_4","iteration":"1","use_flag":1,"style":"{\"background_size_x\":100,\"background_size_y\":100,\"background_image\":\"light.png\",\"left\":\"33px\",\"top\":\"1px\",\"animation_timing_function\":\"Ease-out\"}","frame":{"count":5,"data":[{"custom_style":"","id":"frame_item_0","style":"{\"opacity\":1,\"width\":\"1200px\",\"height\":\"425px\"}","time":0},{"custom_style":"","id":"frame_item_1","style":"{\"opacity\":0.5,\"width\":\"1200px\",\"height\":\"425px\"}","time":0.25},{"custom_style":"","id":"frame_item_2","style":"{\"opacity\":1,\"width\":\"1200px\",\"height\":\"425px\"}","time":0.5},{"custom_style":"","id":"frame_item_3","style":"{\"opacity\":0.5,\"width\":\"1200px\",\"height\":\"425px\"}","time":0.75},{"custom_style":"","id":"frame_item_4","style":"{\"opacity\":1,\"width\":\"1200px\",\"height\":\"425px\"}","time":3}]},"img":{"name":"light.png","width":1200,"height":425}},{"id":"layer_5","name":"New_layer_5","iteration":"1","use_flag":1,"style":"{\"background_size_x\":100,\"background_size_y\":100,\"background_image\":\"header1.png\",\"left\":\"-7px\",\"top\":\"11px\"}","frame":{"count":1,"data":[{"id":"frame_item_0","style":"{\"width\":\"1200px\",\"height\":\"330px\",\"skew\":\"0\",\"scale_x\":\"1\",\"scale_y\":\"1\",\"rotate\":\"0\",\"translate_x\":\"27\",\"translate_y\":\"-9\"}","custom_style":"","time":"0"}]},"img":{"name":"header1.png","width":1200,"height":330}}]} -------------------------------------------------------------------------------- /server/project/5/_thumb_share_btn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/5/_thumb_share_btn.jpg -------------------------------------------------------------------------------- /server/project/5/css.txt: -------------------------------------------------------------------------------- 1 | .mod_canvas{width:400px;height:300px;background-color:#fff;} 2 | -------------------------------------------------------------------------------- /server/project/5/html.txt: -------------------------------------------------------------------------------- 1 |
    2 |
    3 | -------------------------------------------------------------------------------- /server/project/5/index.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | New_Project 6 | 7 | 38 | 39 | 40 | 41 | 42 | 43 | 44 |
    45 |
    46 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /server/project/5/list.json: -------------------------------------------------------------------------------- 1 | [{"name":"share_btn.jpg","thumb_name":"_thumb_share_btn.jpg","thumb_width":100,"thumb_height":28,"width":110,"height":30}] -------------------------------------------------------------------------------- /server/project/5/project.json: -------------------------------------------------------------------------------- 1 | {"project_info":{"id":5,"name":"New_Project","author":"","privacy":"1","time_add":1335954356,"time_save":"","del_flag":0,"layer_count":0},"canvas_data":{"width":400,"height":300,"background_type":1,"background_color":"#fff","background_image":""}} -------------------------------------------------------------------------------- /server/project/5/share_btn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/5/share_btn.jpg -------------------------------------------------------------------------------- /server/project/6/css.txt: -------------------------------------------------------------------------------- 1 | .mod_canvas{width:400px;height:300px;background-color:#fff;} 2 | -------------------------------------------------------------------------------- /server/project/6/html.txt: -------------------------------------------------------------------------------- 1 |
    2 |
    3 | -------------------------------------------------------------------------------- /server/project/6/index.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | New_Project 6 | 7 | 38 | 39 | 40 | 41 | 42 | 43 | 44 |
    45 |
    46 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /server/project/6/list.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /server/project/6/project.json: -------------------------------------------------------------------------------- 1 | {"project_info":{"id":6,"name":"New_Project","author":"","privacy":"1","time_add":1335954361,"time_save":1335954392,"del_flag":0,"layer_count":0},"time_scale_data":{"count":50,"margin":100,"interval":0.5},"canvas_data":{"width":400,"height":300,"background_type":1,"background_color":"#fff","background_image":""},"layer_data":[]} -------------------------------------------------------------------------------- /server/project/7/_thumb_a_slogan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/7/_thumb_a_slogan.png -------------------------------------------------------------------------------- /server/project/7/_thumb_header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/7/_thumb_header.jpg -------------------------------------------------------------------------------- /server/project/7/_thumb_header1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/7/_thumb_header1.jpg -------------------------------------------------------------------------------- /server/project/7/a_slogan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/7/a_slogan.png -------------------------------------------------------------------------------- /server/project/7/css.txt: -------------------------------------------------------------------------------- 1 | .mod_canvas{width:1144px;height:280px;background-color:#fff;background-image:url(../../project/7//header1.jpg)} 2 | .mod_canvas .layer_2{ 3 | position:absolute;left:556px;top:15px;background-size:100% 100%;background-image:url(../../project/7/a_slogan.png); 4 | -webkit-animation: frame_layer_2 1s infinite; 5 | -moz-animation: frame_layer_2 1s infinite; 6 | 7 | } 8 | @-webkit-keyframes frame_layer_2 { 9 | 0% {width:119px;height:86px;} 10 | 20% {width:119px;height:86px;-webkit-transform:perspective(0px) translate(0px,0px) translateZ(0px) scale(1,1) skew(0deg) rotateX(0deg) rotateY(0deg) rotate(15deg) ;-webkit-transform-origin:50% 0%;} 11 | 40% {width:119px;height:86px;-webkit-transform:perspective(0px) translate(0px,0px) translateZ(0px) scale(1,1) skew(0deg) rotateX(0deg) rotateY(0deg) rotate(-10deg) ;-webkit-transform-origin:50% 0%;} 12 | 60% {width:119px;height:86px;-webkit-transform:perspective(0px) translate(0px,0px) translateZ(0px) scale(1,1) skew(0deg) rotateX(0deg) rotateY(0deg) rotate(5deg) ;-webkit-transform-origin:50% 0%;} 13 | 80% {width:119px;height:86px;-webkit-transform:perspective(0px) translate(0px,0px) translateZ(0px) scale(1,1) skew(0deg) rotateX(0deg) rotateY(0deg) rotate(-5deg) ;-webkit-transform-origin:50% 0%;} 14 | 100% {width:119px;height:86px;} 15 | } 16 | @-moz-keyframes frame_layer_2 { 17 | 0% {width:119px;height:86px;} 18 | 20% {width:119px;height:86px;-moz-transform:perspective(0px) translate(0px,0px) translateZ(0px) scale(1,1) skew(0deg) rotateX(0deg) rotateY(0deg) rotate(15deg) ;-moz-transform-origin:50% 0%;} 19 | 40% {width:119px;height:86px;-moz-transform:perspective(0px) translate(0px,0px) translateZ(0px) scale(1,1) skew(0deg) rotateX(0deg) rotateY(0deg) rotate(-10deg) ;-moz-transform-origin:50% 0%;} 20 | 60% {width:119px;height:86px;-moz-transform:perspective(0px) translate(0px,0px) translateZ(0px) scale(1,1) skew(0deg) rotateX(0deg) rotateY(0deg) rotate(5deg) ;-moz-transform-origin:50% 0%;} 21 | 80% {width:119px;height:86px;-moz-transform:perspective(0px) translate(0px,0px) translateZ(0px) scale(1,1) skew(0deg) rotateX(0deg) rotateY(0deg) rotate(-5deg) ;-moz-transform-origin:50% 0%;} 22 | 100% {width:119px;height:86px;} 23 | } 24 | -------------------------------------------------------------------------------- /server/project/7/header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/7/header.jpg -------------------------------------------------------------------------------- /server/project/7/header1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/7/header1.jpg -------------------------------------------------------------------------------- /server/project/7/html.txt: -------------------------------------------------------------------------------- 1 |
    2 |
    3 |
    4 | -------------------------------------------------------------------------------- /server/project/7/list.json: -------------------------------------------------------------------------------- 1 | [{"name":"header.jpg","thumb_name":"_thumb_header.jpg","thumb_width":100,"thumb_height":25,"width":1144,"height":280},{"name":"a_slogan.png","thumb_name":"_thumb_a_slogan.png","thumb_width":100,"thumb_height":73,"width":119,"height":86},{"name":"header1.jpg","thumb_name":"_thumb_header1.jpg","thumb_width":100,"thumb_height":25,"width":1144,"height":280}] -------------------------------------------------------------------------------- /server/project/7/project.json: -------------------------------------------------------------------------------- 1 | {"project_info":{"id":7,"name":"New_Project1","author":"","privacy":"1","time_add":1336101875,"time_save":1336563118,"del_flag":0,"layer_count":3},"time_scale_data":{"count":50,"margin":100,"interval":0.5},"canvas_data":{"width":1144,"height":280,"background_type":1,"background_color":"#fff","background_image":"header1.jpg"},"layer_data":[{"id":"layer_2","name":"a_slogan","iteration":"1","use_flag":1,"style":"{\"background_size_x\":100,\"background_size_y\":100,\"background_image\":\"a_slogan.png\",\"left\":\"556px\",\"top\":\"15px\"}","frame":{"count":6,"data":[{"custom_style":"","id":"frame_item_0","style":"{\"width\":\"119px\",\"height\":\"86px\"}","time":0},{"custom_style":"","id":"frame_item_1","style":"{\"rotate\":\"15\",\"orgin_x\":\"50\",\"orgin_y\":\"0\",\"width\":\"119px\",\"height\":\"86px\"}","time":0.2},{"custom_style":"","id":"frame_item_2","style":"{\"rotate\":\"-10\",\"orgin_x\":\"50\",\"orgin_y\":\"0\",\"width\":\"119px\",\"height\":\"86px\"}","time":0.4},{"custom_style":"","id":"frame_item_3","style":"{\"rotate\":\"5\",\"orgin_x\":\"50\",\"orgin_y\":\"0\",\"width\":\"119px\",\"height\":\"86px\"}","time":0.6},{"custom_style":"","id":"frame_item_4","style":"{\"rotate\":\"-5\",\"orgin_x\":\"50\",\"orgin_y\":\"0\",\"width\":\"119px\",\"height\":\"86px\"}","time":0.8},{"custom_style":"","id":"frame_item_5","style":"{\"width\":\"119px\",\"height\":\"86px\"}","time":1}]},"img":{"name":"a_slogan.png","width":119,"height":86}}]} -------------------------------------------------------------------------------- /server/project/8/_thumb_a_slogan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/8/_thumb_a_slogan.png -------------------------------------------------------------------------------- /server/project/8/_thumb_canvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/8/_thumb_canvas.png -------------------------------------------------------------------------------- /server/project/8/_thumb_header2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/8/_thumb_header2.jpg -------------------------------------------------------------------------------- /server/project/8/_thumb_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/8/_thumb_light.png -------------------------------------------------------------------------------- /server/project/8/a_slogan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/8/a_slogan.png -------------------------------------------------------------------------------- /server/project/8/canvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/8/canvas.png -------------------------------------------------------------------------------- /server/project/8/header2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/8/header2.jpg -------------------------------------------------------------------------------- /server/project/8/html.txt: -------------------------------------------------------------------------------- 1 |
    2 |
    3 |
    4 |
    5 |
    6 |
    7 |
    8 | -------------------------------------------------------------------------------- /server/project/8/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/8/light.png -------------------------------------------------------------------------------- /server/project/8/list.json: -------------------------------------------------------------------------------- 1 | [{"name":"header2.jpg","thumb_name":"_thumb_header2.jpg","thumb_width":100,"thumb_height":25,"width":1144,"height":280},{"name":"light.png","thumb_name":"_thumb_light.png","thumb_width":100,"thumb_height":25,"width":1144,"height":280},{"name":"a_slogan.png","thumb_name":"_thumb_a_slogan.png","thumb_width":100,"thumb_height":73,"width":119,"height":86},{"name":"canvas.png","thumb_name":"_thumb_canvas.png","thumb_width":100,"thumb_height":27,"width":1144,"height":299}] -------------------------------------------------------------------------------- /server/project/9/_thumb_a_slogan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/9/_thumb_a_slogan.png -------------------------------------------------------------------------------- /server/project/9/_thumb_canvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/9/_thumb_canvas.png -------------------------------------------------------------------------------- /server/project/9/_thumb_header2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/9/_thumb_header2.jpg -------------------------------------------------------------------------------- /server/project/9/_thumb_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/9/_thumb_light.png -------------------------------------------------------------------------------- /server/project/9/a_slogan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/9/a_slogan.png -------------------------------------------------------------------------------- /server/project/9/canvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/9/canvas.png -------------------------------------------------------------------------------- /server/project/9/css.txt: -------------------------------------------------------------------------------- 1 | .mod_canvas{width:1144px;height:280px;background-color:#fff;} 2 | -------------------------------------------------------------------------------- /server/project/9/header2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/9/header2.jpg -------------------------------------------------------------------------------- /server/project/9/html.txt: -------------------------------------------------------------------------------- 1 |
    2 |
    3 | -------------------------------------------------------------------------------- /server/project/9/index.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | New_Project4 6 | 7 | 38 | 39 | 40 | 41 | 42 | 43 | 44 |
    45 |
    46 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /server/project/9/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/server/project/9/light.png -------------------------------------------------------------------------------- /server/project/9/list.json: -------------------------------------------------------------------------------- 1 | [{"name":"light.png","thumb_name":"_thumb_light.png","thumb_width":100,"thumb_height":27,"width":1144,"height":299},{"name":"a_slogan.png","thumb_name":"_thumb_a_slogan.png","thumb_width":100,"thumb_height":73,"width":119,"height":86},{"name":"canvas.png","thumb_name":"_thumb_canvas.png","thumb_width":100,"thumb_height":27,"width":1144,"height":299},{"name":"header2.jpg","thumb_name":"_thumb_header2.jpg","thumb_width":100,"thumb_height":27,"width":1144,"height":299}] -------------------------------------------------------------------------------- /server/project/9/project.json: -------------------------------------------------------------------------------- 1 | {"project_info":{"id":9,"name":"New_Project4","author":"","privacy":"1","time_add":1336106819,"time_save":1336361496,"del_flag":0,"layer_count":0},"time_scale_data":{"count":50,"margin":100,"interval":0.5},"canvas_data":{"width":1144,"height":280,"background_type":1,"background_color":"#fff","background_image":""},"layer_data":[]} -------------------------------------------------------------------------------- /server/project/templet.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | {$title} 6 | 7 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | {$content} 44 | 45 | 46 | -------------------------------------------------------------------------------- /skill.txt: -------------------------------------------------------------------------------- 1 | [ 2 | {"type":"lt", 3 | "text":"拖拽此处可以移动图层或将图层拉到回收站中", 4 | "left":100, 5 | "top":100 6 | } 7 | ] -------------------------------------------------------------------------------- /slice/control_loop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/slice/control_loop.png -------------------------------------------------------------------------------- /slice/control_loop_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/slice/control_loop_hover.png -------------------------------------------------------------------------------- /slice/control_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/slice/control_pause.png -------------------------------------------------------------------------------- /slice/control_pause_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/slice/control_pause_hover.png -------------------------------------------------------------------------------- /slice/control_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/slice/control_play.png -------------------------------------------------------------------------------- /slice/control_play_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/slice/control_play_hover.png -------------------------------------------------------------------------------- /slice/control_stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/slice/control_stop.png -------------------------------------------------------------------------------- /slice/control_stop_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/slice/control_stop_hover.png -------------------------------------------------------------------------------- /slice/element_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/slice/element_circle.png -------------------------------------------------------------------------------- /slice/element_circle_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/slice/element_circle_hover.png -------------------------------------------------------------------------------- /slice/element_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/slice/element_image.png -------------------------------------------------------------------------------- /slice/element_image_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/slice/element_image_hover.png -------------------------------------------------------------------------------- /slice/element_rect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/slice/element_rect.png -------------------------------------------------------------------------------- /slice/element_rect_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/slice/element_rect_hover.png -------------------------------------------------------------------------------- /slice/element_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/slice/element_select.png -------------------------------------------------------------------------------- /slice/element_select_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/slice/element_select_hover.png -------------------------------------------------------------------------------- /slice/element_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/slice/element_text.png -------------------------------------------------------------------------------- /slice/element_text_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/slice/element_text_hover.png -------------------------------------------------------------------------------- /slice/element_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/slice/element_video.png -------------------------------------------------------------------------------- /slice/frame_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/slice/frame_close.png -------------------------------------------------------------------------------- /slice/ico_anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/slice/ico_anchor.png -------------------------------------------------------------------------------- /slice/ico_anchor_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/slice/ico_anchor_hover.png -------------------------------------------------------------------------------- /slice/ico_dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/slice/ico_dot.png -------------------------------------------------------------------------------- /slice/ico_eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/slice/ico_eye.png -------------------------------------------------------------------------------- /slice/ico_lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/slice/ico_lock.png -------------------------------------------------------------------------------- /slice/ico_needle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/slice/ico_needle.png -------------------------------------------------------------------------------- /slice/ico_trash_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/slice/ico_trash_32.png -------------------------------------------------------------------------------- /slice/ico_zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/slice/ico_zoom.png -------------------------------------------------------------------------------- /slice/ico_zoom_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/slice/ico_zoom_bar.png -------------------------------------------------------------------------------- /slice/ico_zoom_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/slice/ico_zoom_hover.png -------------------------------------------------------------------------------- /slice/ico_zoom_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/slice/ico_zoom_in.png -------------------------------------------------------------------------------- /slice/ico_zoom_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/slice/ico_zoom_out.png -------------------------------------------------------------------------------- /slice/layer_current.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/slice/layer_current.png -------------------------------------------------------------------------------- /slice/layer_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/slice/layer_hover.png -------------------------------------------------------------------------------- /slice/slide_move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/slice/slide_move.png -------------------------------------------------------------------------------- /slice/tip_drag_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/slice/tip_drag_file.png -------------------------------------------------------------------------------- /test/coin_29x25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/test/coin_29x25.png -------------------------------------------------------------------------------- /test/coin_40x42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/test/coin_40x42.png -------------------------------------------------------------------------------- /test/coin_50x43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/test/coin_50x43.png -------------------------------------------------------------------------------- /test/coin_53x67.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/test/coin_53x67.png -------------------------------------------------------------------------------- /test/coin_69x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/test/coin_69x70.png -------------------------------------------------------------------------------- /test/header_bg_top.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/test/header_bg_top.jpg -------------------------------------------------------------------------------- /test2/clockface.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/test2/clockface.jpg -------------------------------------------------------------------------------- /test2/hourhand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/test2/hourhand.png -------------------------------------------------------------------------------- /test2/minhand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/test2/minhand.png -------------------------------------------------------------------------------- /test2/sechand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/test2/sechand.png -------------------------------------------------------------------------------- /素材/guide-final.$5990.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/素材/guide-final.$5990.png -------------------------------------------------------------------------------- /素材/tips.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/素材/tips.psd -------------------------------------------------------------------------------- /素材/未命名-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/素材/未命名-1.png -------------------------------------------------------------------------------- /素材/未命名-2(1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/素材/未命名-2(1).png -------------------------------------------------------------------------------- /素材/未命名-2.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kundy/iAnimator/f1e0389527bd2665d780098c0e1a041cbb82d232/素材/未命名-2.psd --------------------------------------------------------------------------------