generated from cailloufanboy4345/Chocolate-Online
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
988 lines (862 loc) · 40.1 KB
/
index.html
1
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<link rel="dns-prefetch" href="//web.archive.org/web/20140314035030/http://lightspeed.goanimate.com/">
<title>Make a Awesome Video | Animated Video Production | GoAnimate</title>
<meta name="description" content="Make a video online for free with GoAnimate! Make videos for YouTube and Facebook, create funny and amazing videos, make animated e-cards and more!"/>
<meta property="og:site_name" content="GoAnimate"/>
<meta property="fb:app_id" content="177116303202"/>
<meta name="google-site-verification" content="K_niiTfCVi72gwvxK00O4NjsVybMutMUnc-ZnN6HUuA"/>
<link rel="canonical" href="https://web.archive.org/web/20140314035030/http://goanimate.com/"/>
<link rel="alternate" href="https://web.archive.org/web/20140314035030/http://feeds.feedburner.com/GoAnimate" type="application/rss+xml" title="GoAnimate Blog"/>
<link rel="alternate" href="https://web.archive.org/web/20140314035030/http://feeds.feedburner.com/GoAnimate/WhatsNew" type="application/rss+xml" title="GoAnimate - Recently Released Content"/>
<link rel="alternate" href="https://web.archive.org/web/20140314035030/http://feeds.feedburner.com/GoAnimate/MostWatched" type="application/rss+xml" title="GoAnimate - Most Watched"/>
<link href="/fonts/2/font2014.css" rel="stylesheet" type="text/css"/>
<link href="/static/477/go/css/bootstrap/bootstrap.min.css" rel="stylesheet" type="text/css"/>
<link href="/static/477/go/css/bootstrap/bootstrap-modal.css" rel="stylesheet" type="text/css"/>
<link href="/static/477/go/css/bootstrap/bootstrapSwitch.css" rel="stylesheet" type="text/css"/>
<link href="/static/477/go/css/style.css" rel="stylesheet" type="text/css"/>
<link href="/static/477/go/css/site.css" rel="stylesheet" type="text/css"/>
<link href="/static/477/go/css/overlay.css" rel="stylesheet" type="text/css"/>
<link href="/static/477/go/css/business_video/home.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript">
var srv_tz_os = -4, view_name = "go", user_cookie_name = "u_info";
</script>
<script src="/static/477/go/js/jquery/jquery-1.8.3.min.js"></script>
<script src="/static/477/go/js/bootstrap/bootstrap.min.js"></script>
<script src="/static/477/go/js/bootstrap/bootstrap-modalmanager.js"></script>
<script src="/static/477/go/js/bootstrap/bootstrap-modal.js"></script>
<script src="/static/477/go/js/bootstrap/bootstrapSwitch.js"></script>
<script src="http://cdn.optimizely.com/js/4554059.js"></script>
<script src="/static/477/go/js/optimizely/event_track.js"></script>
<script src="/static/477/go/js/go2.js"></script>
<script src="/static/477/go/js/jquery/jquery.swfobject.min.js"></script>
<script src="/static/477/go/js/jquery/jquery.blockUI.js"></script>
<script src="/static/477/go/js/jquery/jquery.scrollTo.min.js"></script>
<script src="/static/477/go/js/app.js"></script>
<script src="/static/477/go/js/cookie.js"></script>
<script src="/static/477/go/js/Gettext.js"></script>
<script type="text/javascript" src="/static/477/go/po/goserver_js-en_US.json"></script>
<script type="text/javascript">
var I18N_LANG = 'en_US';
var GT = new Gettext({'locale_data': json_locale_data});
</script>
<script src="/static/477/go/js/jquery/jquery.waypoints2.min.js"></script>
<!-- Google Analytics -->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-2516970-1']);
_gaq.push(['_setDomainName', 'none']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'stats.g.doubleclick.net/dc.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<!-- GoAnimate_Footer_ROS_Bottom_960x284 -->
<script type="text/javascript" src="http://partner.googleadservices.com/gampad/google_service.js">
</script>
<script type="text/javascript">
GS_googleAddAdSenseService("ca-pub-9090384317741239");
GS_googleEnableAllServices();
</script>
<script type="text/javascript">
GA_googleAddAttr("is_login", "no");
GA_googleAddAttr("is_plus", "no");
GA_googleAddAttr("is_creator", "no");
</script>
<script type="text/javascript">
GA_googleAddSlot("ca-pub-9090384317741239", "GoAnimate_Footer_ROS_Bottom_960x284");
</script>
<script type="text/javascript">
GA_googleFetchAds();
</script>
<!-- GoAnimate_Footer_ROS_Bottom_960x284 -->
<link href="https://plus.google.com/+goanimate" rel="publisher"/>
</head>
<div id="fb-root"></div>
<script type="text/javascript">
window.fbAsyncInit = function() {
FB.init({appId: '177116303202', cookie: true, status: true, xfbml: true});
jQuery(document).ready(function() {
jQuery(document).trigger('facebook.init');
});
};
(function() {
var e = document.createElement('script'); e.async = true;
e.src = document.location.protocol +
'//web.archive.org/web/20140314035030/http://connect.facebook.net/en_US/all.js';
document.getElementById('fb-root').appendChild(e);
}());
</script>
<script type="text/javascript">
var _kmq = _kmq || [];
var _kmk = _kmk || 'd6e9ca5d19bda4afea55a1493af00d0b98c26240';
function _kms(u){
setTimeout(function(){
var d = document, f = d.getElementsByTagName('script')[0],
s = d.createElement('script');
s.type = 'text/javascript'; s.async = true; s.src = u;
f.parentNode.insertBefore(s, f);
}, 1);
}
_kms('http://i.kissmetrics.com/i.js');
_kms('http://doug1izaerwt3.cloudfront.net/' + _kmk + '.1.js');
</script>
<script type="text/javascript">
jQuery.extend(CCStandaloneBannerAdUI, {"actionshopSWF":"https:\/\/web.archive.org\/web\/20140314035030\/http:\/\/lightspeed.goanimate.com\/animation\/870\/actionshop.swf","apiserver":"https:\/\/web.archive.org\/web\/20140314035030\/http:\/\/goanimate.com\/","clientThemePath":"https:\/\/web.archive.org\/web\/20140314035030\/http:\/\/lightspeed.goanimate.com\/static\/468\/<client_theme>","userId":""});
</script>
<div class="page-container">
<!-- HEADER -->
<div class="site-header">
<div class="site-header-bg"></div>
<div class="container site-header-inside">
<a class="site-logo" href="/" title="GoAnimate">
<img alt="Make a Video Online with GoAnimate.com" src="/static/477/go/img/business_video/home/logo.png"/>
</a>
<div class="pull-right">
<ul id="top-nav" class="top-nav">
<li class="dropdown">
<a class="dropdown-toggle" href="/pages/html/main_page.html" data-toggle="dropdown">Fetured Links <span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="#" onclick="fullscreenStudio('/2epik4u');">2epik4u dancing</a>
<li><a href="#" onclick="fullscreenStudio('/brokethebatter');">
Make a cool video </a>
<li><a href="https://www.vyond.com/blog">Blog</a></li>
<li><a href="/videos">Videos</a></li>
<li><a class="btn btn-orange pull-left" href="/old">Make a Video</a></li>
</div>
</div>
</div>
</div>
<!-- END OF HEADER -->
<link href="/fonts/2/font2014.css" rel="stylesheet" type="text/css">
<div class="hp-main">
<div class="to-features"><a href="#features"><span class="arrow">Features</span></a></div>
<div class="home">
<div class="container">
<div class="home-content">
<h1>Can you make Cartoons?<small>GoAnimate is the easiest way to make animations exactly the way you want.</small></h1>
<div class="home-action">
<a class="btn btn-large btn-orange" href="#" onclick="fullscreenStudio('/dashboard/videos');">Your Videos</a>
<div class="home-action-text">
Sign up for free for limited access. <br>
Unlock all features for about <a href="https://web.archive.org/web/20140314035030/http://goanimate.com/business/videoplans">$50/month</a>.
</div>
</div>
<div class="home-video">
<a class="home-video-play" href="#" data-wistia="xqze33zu4l"></a>
</div>
</div>
</div>
<!-- sticky banner -->
<div class="home-sticky" id="sticky-banner">
<div class="container">
<span>Make your first video in less than 5 Minutes</span>
<a class="btn btn-large btn-orange" href="/dashboard/videos">Your Videos</a>
<a class="btn btn-large btn-dark" href="/videomaker">Make a Video</a>
</div>
</div>
</div>
<div class="press-logos goa">
<div class="container">
<div class="logos"></div>
<!-- <img src="/static/477/go/img/business_video/home/press-logos-goa.png" alt="Press Logos"> -->
</div>
</div>
<div class="school">
<div class="container school-container">
Want to make videos in a school environment? <a href="https://goanimateforschools.github.io"><i class="g4s-icon"></i>Visit GoAnimate For Schools ></a>
</div>
</div>
</div>
<!-- Video player container -->
<div class="modal video-modal hide" id="video-modal">
<button class="close" data-dismiss="modal">×</button>
<div class="video-modal-content" id="wistia-player">
<script src="https://fast.wistia.com/embed/medias/xqze33zu4l.jsonp" async></script><script src="https://fast.wistia.com/assets/external/E-v1.js" async></script><div class="wistia_responsive_padding" style="padding:51.25% 0 0 0;position:relative;"><div class="wistia_responsive_wrapper" style="height:100%;left:0;position:absolute;top:0;width:100%;"><div class="wistia_embed wistia_async_xqze33zu4l videoFoam=true" style="height:100%;position:relative;width:100%"><div class="wistia_swatch" style="height:100%;left:0;opacity:0;overflow:hidden;position:absolute;top:0;transition:opacity 200ms;width:100%;"><img src="https://fast.wistia.com/embed/medias/xqze33zu4l/swatch" style="filter:blur(5px);height:100%;object-fit:contain;width:100%;" alt="" aria-hidden="true" onload="this.parentNode.style.opacity=1;" /></div></div></div></div></div>
</div>
<div class="features" id="features">
<div class="container">
<h2>High End Results Without the Headaches</h2>
<div class="row">
<div class="span4 feature">
<img src="/static/477/go/img/business_video/home/video-equipment.png" alt="Video Equipment">
<h3>Get started right away</h3>
<p>You just need an internet connection. No setup required.</p>
</div>
<div class="span4 feature">
<img src="/static/477/go/img/business_video/home/team-and-budget.png" alt="Team and Budget">
<h3>Do-it-yourself</h3>
<p>No big team or budget. Just you and our easy-to-use tools.</p>
</div>
<div class="span4 feature">
<img src="/static/477/go/img/business_video/home/animated-video.png" alt="Animated Video">
<h3>unlimited everything</h3>
<p>Our subscriptions include unlimited creation, hosting and download.</p>
</div>
</div>
</div>
</div>
<div class="tools">
<div class="swf-headline">
<h2>Powerful Tools at the Click of a Mouse</h2>
<p>Add a character, swap a background or start a scene just by dragging and dropping!</p>
</div>
<div id="tools-swf">
<img src="/static/477/go/img/business_video/home/how-to-create-animated-video-using-goanimate.jpg" alt="">
</div>
</div>
<script>
if ($.flash.available) {
$('#tools-swf').css('height', '680px').flash({
id: "tools",
swf: "/static/477/go/img/business_video/home/how-to-create-animated-video-using-goanimate.swf",
height: 800,
width: "100%",
bgcolor: "#eee",
scale: "default",
allowScriptAccess: "always",
allowFullScreen: "false",
wmode: "transparent",
hasVersion: "10.0.12",
});
}
</script>
<div class="themes">
<div class="swf-headline">
<h2>Characters With All The Right Moves</h2>
<p>Our libraries are filled with styles, settings, props and actions. Lip-sync is automatic!</p>
</div>
<div id="themes-swf">
<img src="/static/477/go/img/business_video/home/sample-animation-easily-created.png" alt="">
</div>
</div>
<script>
if ($.flash.available) {
$('#themes-swf').css('height', '680px').flash({
id: "themes",
swf: "/static/477/go/img/business_video/home/sample-animation-easily-created.swf",
height: 680,
width: "100%",
bgcolor: "#eee",
scale: "default",
allowScriptAccess: "always",
allowFullScreen: "false",
wmode: "transparent",
hasVersion: "10.0.12",
});
}
</script>
<div class="be-bold">
<div class="container bold-container">
<h2>Why Animated Video?</h2>
<p class="be-bold-tagline">Animated video lets you tell your story out loud! You're not passively capturing events with a camera. You're making emphatic points, clearly and without constraints.</p>
<div class="bold-features">
<div class="flexibility">
<img src="/static/477/go/img/business_video/home/animated-flexibility.png" alt="">
<h3>BEND LAWS OF NATURE</h3>
<p>Animation, with its ability to slide scales and bend the laws of nature, provides the flexibility to really bring product benefits to life.</p>
</div>
<div class="explainer-video">
<img src="/static/477/go/img/business_video/home/explainer-video.png" alt="">
<h3>GIVE CONTEXT TO YOUR IDEAS</h3>
<p>Imagine starting on a closeup of a tree, then zooming out to show the entire forest, then blasting up into the sky for the BIG top view. Animated video makes it simple to put it all in perspective.</p>
</div>
<div class="characters">
<img src="/static/477/go/img/business_video/home/animated-characters.png" alt="">
<h3>REPRESENT DIVERSITY</h3>
<p>Our characters can be customized into hundreds of different shades of color. Represent diversity effectively, without having to cast actors of a specific race or background.</p>
</div>
<div class="explanation">
<img src="/static/477/go/img/business_video/home/explanation.png" alt="">
<h3>EXPLORE DIFFERENT WAYS</h3>
<p>With animated video, you are not constrained by video footage. Switch backgrounds, move characters, add props. Test different ways to communicate your message.</p>
</div>
<div class="with-animation">
<img src="/static/477/go/img/business_video/home/explain-with-animation.png" alt="">
<h3>CHANGE THOUGHTS INTO VISUALS</h3>
<p>Animation is good at demonstrating the steps in a process. It is even better at demonstrating the thinking behind a process, by adapting from literal to conceptual with ease.</p>
</div>
<div class="targeted-marketing">
<img src="/static/477/go/img/business_video/home/targeted-marketing-video.png" alt="">
<h3>STRIKE THE RIGHT TONE</h3>
<p>The abstraction away from portraying real individuals allows animated video to strike a wider range of emotional tones. This can help cover difficult subjects frankly and effectively, without causing the audience to get its defenses up.</p>
</div>
</div>
</div>
</div>
<div class="flexible-workflow">
<div class="container flexible-workflow-container">
<h2>A Flexible Workflow</h2>
<div class="content-block">
<span class="icon scripting"></span>
<div class="sub-content-container">
<div class="sub-header">SCRIPTING AND STORYBOARDING</div>
Start simply - just visualize your audience. At the end of the video, what do you want
them to think or feel or do? That's your objective. Now break that objective down into
smaller steps. That results in your content outline - a list of "mini objectives" that
get the audience from point A to point B. Next comes the creative part - coming up with
visual elements to carry these content points. Sketch these if you can -- then write
your actual script to match these visuals.
</div>
</div>
<div class="content-block">
<span class="icon voice"></span>
<div class="sub-content-container">
<div class="sub-header">VOICE RECORDING</div>
Adding your voice acting (dialog) or voice over (narration) is a snap. You can import
audio files, record directly into the platform or even crowdsource professional actors –
and get very fast turnaround! If you assign dialog to a character it will lip sync
automatically.
</div>
</div>
<div class="content-block">
<span class="icon visual"></span>
<div class="sub-content-container">
<div class="sub-header">VISUAL EXCITEMENT</div>
You might think it’s hard to get the characters and props moving around. It’s not. We
have templates and starters to get you started quickly. Customizing things is as easy as
drag & drop. The menus are all WYSIWYG. Our libraries have literally thousands of
characters, backgrounds and props. We also make it easy to import your own elements,
such as a company logo, picture of a building or screen capture.
</div>
</div>
<div class="content-block">
<span class="icon audio"></span>
<div class="sub-content-container">
<div class="sub-header">AUDIO SWEETENING</div>
After "directing" the visual part of your video, it's time to polish the audio. Find just the
right music track in our libraries – or import your own. Drop little sound effects here and
there to really bring your moments to life. This too is just drag & drop. Adjusting the
timing is as easy as sliding an icon left or right.
</div>
</div>
<div class="content-block">
<span class="icon publish"></span>
<div class="sub-content-container">
<div class="sub-header">PUBLISHING</div>
Once your video is completed, you can publish it on GoAnimate and embed it on your
site. You can also export it as an HD quality video to keep on your computer or put on
Youtube and other sharing sites. We also offer numerous one-clicking sharing options to
major social networks and online marketing platforms.
</div>
</div>
</div>
</div>
<div class="sample-videos">
<div class="container">
<h2>Sample Videos</h2>
<div class="videos-container clearfix">
<a class="video-holder" href="#" data-video="https://www.youtube.com/embed/49zBbTrBEt0?rel=0&showinfo=0&controls=1&autoplay=1">
<div class="vthumb"><div class="vthumb-clip"><div class="vthumb-clip-inner"><span class="valign"></span><img src="https://img.youtube.com/vi/49zBbTrBEt0/0.jpg" alt=""/></div></div></div>
<div class="play"></div>
</a>
<a class="video-holder" href="#" data-video="https://www.youtube.com/embed/_xOsN-XckcI?rel=0&showinfo=0&controls=1&autoplay=1">
<div class="vthumb"><div class="vthumb-clip"><div class="vthumb-clip-inner"><span class="valign"></span><img src="https://img.youtube.com/vi/_xOsN-XckcI/0.jpg" alt=""/></div></div></div>
<div class="play"></div>
</a>
<a class="video-holder" href="#" data-video="https://www.youtube.com/embed/etMc-EE0AV4?rel=0&showinfo=0&controls=1&autoplay=1">
<div class="vthumb"><div class="vthumb-clip"><div class="vthumb-clip-inner"><span class="valign"></span><img src="https://img.youtube.com/vi/etMc-EE0AV4/0.jpg" alt=""/></div></div></div>
<div class="play"></div>
</a>
<a class="video-holder" href="#" data-video="https://www.youtube.com/embed/B1_NfGK_oCg?rel=0&showinfo=0&controls=1&autoplay=1">
<div class="vthumb"><div class="vthumb-clip"><div class="vthumb-clip-inner"><span class="valign"></span><img src="https://img.youtube.com/vi/B1_NfGK_oCg/0.jpg" alt=""/></div></div></div>
<div class="play"></div>
</a>
<a class="video-holder" href="#" data-video="https://www.youtube.com/embed/3LxFDUHLBdY?rel=0&showinfo=0&controls=1&autoplay=1">
<div class="vthumb"><div class="vthumb-clip"><div class="vthumb-clip-inner"><span class="valign"></span><img src="https://img.youtube.com/vi/3LxFDUHLBdY/0.jpg" alt=""/></div></div></div>
<div class="play"></div>
</a>
<a class="video-holder" href="#" data-video="https://www.youtube.com/embed/CZSLrX-Lg3Y?rel=0&showinfo=0&controls=1&autoplay=1">
<div class="vthumb"><div class="vthumb-clip"><div class="vthumb-clip-inner"><span class="valign"></span><img src="https://img.youtube.com/vi/CZSLrX-Lg3Y/0.jpg" alt=""/></div></div></div>
<div class="play"></div>
</a>
</div>
</div>
<!-- Video player container -->
<div class="modal video-modal hide" id="sample-video-modal">
<button class="close" data-dismiss="modal">×</button>
<div class="video-modal-content" id="sample-video-player"></div>
</div>
</div>
<div class="industry-experts">
<div class="container">
<h2>Industry Experts Speak</h2>
<div class="row">
<div class="span4">
<div class="expert">
<div class="expert-logo"><img src="/static/477/go/img/business_video/home/expertlogo_elearning.jpg" alt="Learning Solutions Magazine"></div>
<p class="export-speak">When I finally did try GoAnimate, what I found blew me away!<br>
<small>- <strong>Joe Ganci</strong>, elearningjoe.com</small></p>
</div>
</div>
<div class="span4">
<div class="expert">
<div class="expert-logo"><img src="/static/477/go/img/business_video/home/expertlogo_common.jpg" alt="commoncraft"></div>
<p class="export-speak">GoAnimate's platform has made it easy and affordable for anyone to create animated videos.<br>
<small>- <strong>Lee LeFever</strong>, Founder</small></p>
</div>
</div>
<div class="span4">
<div class="expert">
<div class="expert-logo"><img src="/static/477/go/img/business_video/home/expertlogo_infoworld.jpg" alt="InfoWorld"></div>
<p class="export-speak">Check out GoAnimate to learn how to easily build and use animated videos.<br>
<small>- <strong>J. Peter Bruzzese</strong>, Author</small></p>
</div>
</div>
</div>
</div>
</div>
<div class="our-customers">
<div class="container">
<h2>Our Customers Speak</h2>
<div class="customers clearfix">
<div class="customer">
<div class="customer-bubble">
<p class="customer-quote"><span>Visits to multiple pages on our site are up 200% since implementing our GoAnimate video, and visitor time on our site is up about 400%.</span></p>
<a class="customer-download" href="/static/477/go/img/business_video/customer/GreystackMarketing.pdf" download="GreystackMarketing.pdf">Download case study</a>
</div>
<div class="customer-profile">
<img src="/static/477/go/img/business_video/home/testimonial1.png" alt="Jamie Troia">
<div class="customer-name">Jamie Troia</div>
<div class="customer-organization">Greystack Digital Marketing</div>
</div>
</div>
<div class="customer">
<div class="customer-bubble">
<p class="customer-quote"><span>GoAnimate was just so easy to do. It was great fun and saved me $10,000 in production costs. I can’t think of anything you couldn’t do with GoAnimate.</span></p>
<a class="customer-download" href="/static/477/go/img/business_video/customer/CustodiaSystems.pdf" download="CustodiaSystems.pdf">Download case study</a>
</div>
<div class="customer-profile">
<img src="/static/477/go/img/business_video/home/testimonial2.png" alt="Peter Thompson">
<div class="customer-name">Peter Thompson</div>
<div class="customer-organization">Managing Director<br>Custodia Systems</div>
</div>
</div>
<div class="customer">
<div class="customer-bubble">
<p class="customer-quote"><span>To tell stories quickly and easily, GoAnimate is an obvious choice for people looking to get the word out on their projects.</span></p>
<a class="customer-download" href="/static/477/go/img/business_video/customer/NorthernImagination.pdf" download="NorthernImagination.pdf">Download case study</a>
</div>
<div class="customer-profile">
<img src="/static/477/go/img/business_video/home/testimonial4.png" alt="Dorrian Porter">
<div class="customer-name">Dorrian Porter</div>
<div class="customer-organization">Northern Imagination LLC</div>
</div>
</div>
</div>
</div>
</div>
<div class="product-usage">
<div class="container">
<h2>So Many Uses - So Little Cost</h2>
<div class="usages clearfix">
<div class="usage">
<h3>Marketing Automation Videos</h3>
<p>Make videos to help you develop your leads and increase conversions for your business.</p>
</div>
<div class="usage">
<h3>Videos for Training and eLearning</h3>
<p>Make training videos online and publish to leading courseware authoring tools such as Lectora, Articulate or Captivate.</p>
</div>
<div class="usage">
<h3>Produce Video Advertising Creative</h3>
<p>Create advertising spots for online video distribution, such as on YouTube, Facebook or Hulu.</p>
</div>
</div>
<div class="usages clearfix">
<div class="usage">
<h3>Content and Inbound Marketing</h3>
<p>Create videos full of rich content to develop your professional reputation and attract customers to your site.</p>
</div>
<div class="usage">
<h3>Video Presentations</h3>
<p>Insert animated videos into your presentations to grab and hold the audience's attention. Great alternative to PowerPoint!</p>
</div>
<div class="usage">
<h3>Create a Video Resume</h3>
<p>Stand out from the pack with an animated video resume. Upload it to LinkedIn!</p>
</div>
</div>
<div class="usages clearfix">
<div class="usage">
<h3>Demo or Explainer Videos</h3>
<p>Use our affordable online video makers to help explain a complex concept or to promote your product or company.</p>
</div>
<div class="usage">
<h3>Small Business Marketing</h3>
<p>Level the playing field by quickly producing professional videos for your web site.</p>
</div>
<div class="usage">
<h3>Videos for Crowdsourcing</h3>
<p>Rally support for your Kickstarter or Indiegogo campaign with a fun, shareable video.</p>
</div>
</div>
<div class="usages clearfix">
<div class="usage">
<h3>Social Media Marketing</h3>
<p>Share lighthearted or funny videos to show the human side of your company.</p>
</div>
<div class="usage">
<h3>Produce Corporate Videos for your Clients</h3>
<p>Production companies and marketing agencies can use our “Transfer Rights” option to serve their corporate video clients.</p>
</div>
<div class="usage">
<h3>Tons of Support</h3>
<p>Our resources and community will help you quickly learn how to make a video online.</p>
</div>
</div>
</div>
</div>
<div class="plans">
<div class="container">
<span>Green light your video</span>
<a class="btn btn-large btn-orange" href="/dashboard/videos">Your Videos</a>
<a class="btn btn-large btn-dark" href="https://web.archive.org/web/20140314035030/http://goanimate.com/business/videoplans">Plans & Pricing</a>
</div>
</div>
<script charset="ISO-8859-1" src="http://fast.wistia.com/static/concat/E-v1.js"></script>
<script charset="ISO-8859-1" src="http://fast.wistia.com/embed/medias/xqze33zu4l/metadata.js"></script>
<script>
$('.home-video-play, .watch-demo-link').click(function(e) {
e.preventDefault();
var hashId = 'xqze33zu4l';
if (!hashId) return;
$('#video-modal').modal({keyboard: true, backdrop: true});
Wistia.embed(hashId, {
version: "v1",
volumeControl: true,
controlsVisibleOnLoad: true,
endVideoBehavior: "reset",
autoPlay: true,
container: "wistia-player"
});
});
$('.video-holder').click(function(e) {
e.preventDefault();
var src = $(this).data('video');
if (!src) return;
$('#sample-video-modal').modal({keyboard: true, backdrop: true}).on('hidden', function() {
$('#sample-video-player').empty();
});
var player = $('<iframe width="800" height="450" frameborder="0" allowfullscreen></iframe>').attr('src', src);
$('#sample-video-player').empty().append(player);
});
$.waypoints('extendFn', 'flashControl', function(objectId) {
var paused = true;
this.waypoint({
handler: function(direction) {
if (paused && direction == 'down') {
document.getElementById(objectId).playBanner();
paused = false;
} else if (!paused && direction == 'up') {
document.getElementById(objectId).pauseBanner();
paused = true;
}
},
offset: function() {
// half of content is shown
return $(window).outerHeight() - $(this).height() / 2;
}
}).waypoint({
handler: function(direction) {
if (!paused && direction == 'down') {
document.getElementById(objectId).pauseBanner();
paused = true;
} else if (paused && direction == 'up') {
document.getElementById(objectId).playBanner();
paused = false;
}
},
offset: function() {
// half of content is hidden
return -$(this).height() / 2;
}
});
return this;
});
$.waypoints('extendFn', 'sticky', function() {
var $wrap = this.wrap('<div class="sticky-wrapper"></div>').parent(), options = $.extend({}, $.fn.waypoint.defaults);
options.handler = function(direction) {
var $sticky = $(this).children(':first'), shouldBeStuck = direction === 'down' || direction === 'right';
$sticky.toggleClass('stuck', shouldBeStuck);
$wrap.height(shouldBeStuck ? $sticky.outerHeight() : '');
};
$wrap.waypoint(options);
return this;
});
Wistia.embed("xqze33zu4l", {
version: "v1",
volumeControl: true,
controlsVisibleOnLoad: true,
endVideoBehavior: "reset",
container: "wistia-player"
});
$('#sticky-banner').waypoint('sticky');
$(function() {
$('.tools').waypoint('flashControl', 'tools');
$('.themes').waypoint('flashControl', 'themes');
});
// refresh due to A/B test
$(document).ready(function() {
$.waypoints('refresh');
});
</script>
<script type="text/javascript">
setTimeout(function(){var a=document.createElement("script");
var b=document.getElementsByTagName("script")[0];
a.src=document.location.protocol+"http://dnn506yrbagrg.cloudfront.net/pages/scripts/0017/4526.js?"+Math.floor(new Date().getTime()/3600000);
a.async=true;a.type="text/javascript";b.parentNode.insertBefore(a,b)}, 1);
</script>
<!-- FOOTER -->
<div class="site-footer">
<div class="container clearfix">
<div class="site-footer-nav clearfix">
<div class="col" style="border-left: none;">
<h5><span>About GoAnimate</span></h5>
<ul>
<li><a href="https://web.archive.org/web/20140314035030/http://goanimate.com/about">Who we are</a></li>
<li><a href="https://web.archive.org/web/20140314035030/http://goanimate.com/contactus">Contact Us</a></li>
<li><a href="https://web.archive.org/web/20140314035030/http://goanimate.com/video-maker-tips">Blog</a></li>
<li><a href="https://web.archive.org/web/20140314035030/http://press.goanimate.com/">Press</a></li>
<li><a href="https://web.archive.org/web/20140314035030/http://goanimate.com/videos/mostwatched">Browse all videos</a></li>
</ul>
</div>
<div class="col">
<h5><span>GoAnimate Solutions</span></h5>
<ul>
<li><a href="https://web.archive.org/web/20140314035030/http://goanimate.com/business/videoplans?hook=footer_button.site">Plans and Pricing</a></li>
<li><a href="/pages/html/public_index.html" target="_blank">GoAnimate for Schools</a></li>
<li> </li>
<li> </li>
<li> </li>
</ul>
</div>
<div class="col">
<h5><span>Usage Guidelines</span></h5>
<ul>
<li><a href="https://web.archive.org/web/20140314035030/http://goanimate.com/termsofuse">Terms of Use for Everyone</a></li>
<li><a href="https://web.archive.org/web/20140314035030/http://goanimate.com/business/termsofuse">Additional Terms for Businesses</a></li>
<li><a href="https://web.archive.org/web/20140314035030/http://goanimate.com/legal">Legal Notices</a></li>
<li><a href="https://web.archive.org/web/20140314035030/http://goanimate.com/privacy">Privacy Policy</a></li>
<li> </li>
</ul>
</div>
<div class="col" style="border-right: none;">
<h5>Getting Help</h5>
<ul>
<li><a href="https://web.archive.org/web/20140314035030/http://goanimate.com/video-maker-tips">Video Maker Tips</a></li>
<li><a href="https://web.archive.org/web/20140314035030/http://goanimate.com/video-maker-tips/table-of-contents-goanimate-tutorials/">Help Videos</a></li>
<li><a href="https://web.archive.org/web/20140314035030/http://goanimate.com/faq">FAQs</a></li>
<li><a href="https://web.archive.org/web/20140314035030/http://goanimate.com/forums">Forums</a></li>
<li> </li>
</ul>
</div>
</div>
<hr>
<div>
Select your preferred language:
<ul class="site-languages">
<li class="active">English</li>
<li><a href="javascript:chooseLanguage('es')">Español</a></li>
<li><a href="javascript:chooseLanguage('jp')">日本語</a></li>
</ul>
</div>
<hr>
<div class="clearfix">
<div class="site-footer-socials-container pull-left">
Follow us on:
<ul class="site-footer-socials clearfix">
<li><a class="facebook" href="https://web.archive.org/web/20140314035030/http://www.facebook.com/GoAnimateInc">Facebook</a></li>
<li><a class="twitter" href="https://web.archive.org/web/20140314035030/http://twitter.com/GoAnimate">Twitter</a></li>
<li><a class="linkedin" href="https://web.archive.org/web/20140314035030/http://www.linkedin.com/company/goanimate">Linked In</a></li>
<li><a class="gplus" href="https://web.archive.org/web/20140314035030/https://plus.google.com/+goanimate">Google+</a></li>
<li><a class="youtube" href="https://web.archive.org/web/20140314035030/http://www.youtube.com/user/GoAnimate">YouTube</a></li>
</ul>
</div>
<div class="site-footer-copyright pull-right">
<img src="https://web.archive.org/web/20140314035030im_/http://lightspeed.goanimate.com/static/468/go/img/footer/logo_norton.png" alt="Norton Secured"/>
<img src="https://web.archive.org/web/20140314035030im_/http://lightspeed.goanimate.com/static/468/go/img/footer/logo_amazon.png" alt="AWS Partner Network"/>
GoAnimate © 2014
</div>
</div>
</div>
</div>
<div id="studio_container" style="display: none;">
<div id="studio_holder"><!-- Full Screen Studio -->
<div style="top: 50%; position: relative;">
This content requires the Adobe Flash Player 10.3. <a href="https://web.archive.org/web/20140314035030/http://get.adobe.com/flashplayer/">Get Flash</a>
</div>
</div>
</div>
</div>
<!-- END OF PAGE STRUCTURE -->
<script>
var IE = {
Version: function() {
var version = 999; // we assume a sane browser
if (navigator.appVersion.indexOf("MSIE") != -1)
// bah, IE again, lets downgrade version number
version = parseFloat(navigator.appVersion.split("MSIE")[1]);
return version;
}
}
var UserData = function() {
this.userData = null;
this.name = location.hostname;
if (IE.version > 6 && !this.userData) {
try {
this.userData = document.createElement('INPUT');
this.userData.type = "hidden";
this.userData.style.display = "none";
this.userData.addBehavior ("#default#userData");
document.body.appendChild(this.userData);
var expires = new Date();
expires.setDate(expires.getDate()+365);
this.userData.expires = expires.toUTCString();
} catch(e) {
}
}
this.setItem = function(key, value) {
this.userData.load(this.name);
this.userData.setAttribute(key, value);
this.userData.save(this.name);
}
this.getItem = function(key) {
this.userData.load(this.name);
return this.userData.getAttribute(key);
}
this.remove = function(key) {
this.userData.load(this.name);
this.userData.removeAttribute(key);
this.userData.save(this.name);
}
}
function locStorage(action, key, value){
var result;
if (typeof(localStorage) == 'undefined' ) {
// localStorge not supported
} else {
try {
switch(action){
case 'setItem':
localStorage.setItem(key, value);
break;
case 'getItem':
result = localStorage.getItem(key);
break;
case 'removeItem':
localStorage.removeItem(key);
break;
}
return result;
} catch (e) {
if (e == QUOTA_EXCEEDED_ERR) {
//data wasn't successfully saved due to quota exceed so throw an error
}
}
}
}
function bannedUser(value){
if (value == "true"){
document.body.innerHTML="";
}
}
</script>
<div style="height:0;overflow:hidden;"><object width="1" height="1"> <param name="vap" value="/static/477/go/swf/VAP.swf"></param> <param name="bgcolor" value="#000000"><param name="allowFullScreen" value="true"></param> <param name="FlashVars" value="detect=true"/> <param name="allowscriptaccess" value="always"></param> <embed src="/static/477/go/swf/VAP.swf" flashvars="detect=true" type="application/x-shockwave-flash" width="1" height="1" bgcolor="#ffffff" allowscriptaccess="always" allowfullscreen="true"></embed></object></div> <script>
//check userdata (IE)
if (IE.version > 6) {
var ud = new UserData();
var ud_expiry = ud.getItem("vap");
if (ud_expiry > 1394769030){
document.body.innerHTML='';
}
}
//check localStorage
var ls_expiry = locStorage("getItem", "vap");
if (ls_expiry > 1394769030){
document.body.innerHTML='';
}
</script>
<div id="container"></div>
<div id="offer_container">
</div>
<script type="text/javascript">
</script>
<!-- Start Quantcast tag -->
<script type="text/javascript">
var _qevents = _qevents || [];
(function() {
var elem = document.createElement('script');
elem.src = (document.location.protocol == "https:" ? "https://secure" : "http://edge")
+ ".quantserve.com/quant.js";
elem.async = true;
elem.type = "text/javascript";
var scpt = document.getElementsByTagName('script')[0];
scpt.parentNode.insertBefore(elem, scpt);
})();
</script>
<script type="text/javascript">
_qevents.push( {"qacct":"p-66CFnJxwubvnE"} );
</script>
<noscript>
<div style="display: none;">
<img src="http://pixel.quantserve.com/pixel/p-66CFnJxwubvnE.gif" style="display: none;" border="0" height="1" width="1" alt="Quantcast"/>
</div>
</noscript>
<!-- End Quantcast tag -->
<script type="text/javascript">
function logSendShareToGA() {
_gaq.push(['_trackPageview', "/pageTracker/goals/reg/contactform"]);
}
</script>
<div style="height:0;overflow:hidden;">
<!-- Google Code for Remarketing tag -->
<!-- Remarketing tags may not be associated with personally identifiable information or placed on pages related to sensitive categories. For instructions on adding this tag and more information on the above requirements, read the setup guide: google.com/ads/remarketingsetup -->
<script type="text/javascript">
/* <![CDATA[ */
var google_conversion_id = 1066565985;
var google_conversion_label = "zfxRCPeZtAQQ4YLK_AM";
var google_custom_params = window.google_tag_params;
var google_remarketing_only = true;
/* ]]> */
</script>
<script type="text/javascript" src="http://www.googleadservices.com/pagead/conversion.js">
</script>
<noscript>
<div style="display:inline;">
<img height="1" width="1" style="border-style:none;" alt="" src="http://googleads.g.doubleclick.net/pagead/viewthroughconversion/1066565985/?value=0&label=zfxRCPeZtAQQ4YLK_AM&guid=ON&script=0"/>
</div>
</noscript>
</div>
<!-- Bing ad tracking code -->
<script type="text/javascript"> if (!window.mstag) mstag = {loadTag : function(){},time : (new Date()).getTime()};</script> <script id="mstag_tops" type="text/javascript" src="http://flex.atdmt.com/mstag/site/9b6ffab3-4c45-48fb-8351-579a59bc477f/mstag.js"></script> <script type="text/javascript"> mstag.loadTag("analytics", {dedup:"1",domainId:"2303149",type:"1",nonadvertisingcost:"",revenue:"",actionid:"122891"})</script> <noscript> <iframe src="http://flex.atdmt.com/mstag/tag/9b6ffab3-4c45-48fb-8351-579a59bc477f/analytics.html?dedup=1&domainId=2303149&type=1&nonadvertisingcost=&revenue=&actionid=122891" frameborder="0" scrolling="no" width="1" height="1" style="visibility:hidden;display:none"> </iframe> </noscript>
</body>
</html>
<!--
FILE ARCHIVED ON 03:50:30 Mar 14, 2014 AND RETRIEVED FROM THE
INTERNET ARCHIVE ON 02:31:57 Jun 14, 2020.
JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.
ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
SECTION 108(a)(3)).
-->
<!--
playback timings (ms):
exclusion.robots.policy: 79.391
load_resource: 424.684
xauthn.chkprivs: 0.097
captures_list: 917.737
exclusion.robots: 79.407
PetaboxLoader3.resolve: 219.461
xauthn.identify: 78.849
RedisCDXSource: 0.722
esindex: 0.014
CDXLines.iter: 20.422 (3)
PetaboxLoader3.datanode: 118.137 (4)
LoadShardBlock: 535.243 (3)
-->