2d Animation Projects
Looking for freelance 2d Animation jobs and project work? PeoplePerHour has you covered.
2D Animator needed
Im looking for a 2D Animator to make comic book inspired TikTok Videos. I would like the animations to resemble that of the Pepe Animations, please have a search prior to contacting me. I am looking to build a long lasting and repetitive relationship. i have added an video for inspiration on what it would need to look like. please provide videos you may have done previously similar to this.
8 days ago12 proposalsRemoteopportunity
Full time - 2D Cartoon animation creator
We are seeking a talented Full time 2D cartoon animator to collaborate with our team and bring our scripts to life. Our goal is to create engaging, high-quality animated videos similar to those featured on the Natural Habitat Shorts YouTube channel. If you have a passion for storytelling through animation and the skills to deliver top-notch work, we’d love to hear from you! https://www.youtube.com/@NaturalHabitatShorts Responsibilities: - Create 2D cartoon animations based on scripts provided by our team. - Develop characters, scenes, and animations that match the humor, tone, and quality of the referenced style. - Collaborate with our creative team to ensure the animations align with the script and vision. - Deliver projects within agreed timelines while maintaining high-quality standards. Requirements: - Proven experience in 2D animation with a portfolio showcasing similar styles to Natural Habitat Shorts. - Proficiency in animation software such as Adobe Animate, Toon Boom, or equivalent. - Strong storytelling and character animation skills. - Ability to work independently while maintaining open communication with the team. - Excellent attention to detail and creativity. Preferred: - Experience with sound design and incorporating audio into animations. - Familiarity with YouTube content creation trends. How to Apply: Please submit your portfolio, highlighting animations similar to Natural Habitat Shorts, along with your resume and a brief cover letter here. We look forward to seeing your creative talent!
24 days ago24 proposalsRemotePutting AI desing on 2 D template
I am a designer myself and owner of the brand Trititan. I need some help in putting AI generated designs on a 2D template.
21 hours ago11 proposalsRemoteA 2D Shooter game
Project: "Space Invader Clone" – A Simple 2D Shooter Game in Python Overview: The project is a basic 2D space shooter game inspired by the classic Space Invaders. Using Python and the Pygame library, the game will allow players to control a spaceship at the bottom of the screen, shooting at alien invaders falling from the top. The goal is to eliminate all the aliens while avoiding their projectiles. The game will feature simple mechanics, including shooting, moving left and right, and dodging enemy attacks. Key Features: Player Movement: The player controls a spaceship at the bottom of the screen that can move left and right using the keyboard (e.g., arrow keys or 'A' and 'D'). Shooting Mechanism: The player can shoot bullets upwards to destroy enemies by pressing a key (e.g., spacebar). The bullets travel vertically until they hit an alien or move off the screen. Enemy Movement: Aliens move horizontally across the screen. When they reach the edge, they drop down and reverse direction, gradually getting closer to the player's spaceship. Collisions: The game detects collisions between player bullets and aliens as well as between alien bullets and the player's spaceship. Game Over and Scoring: The game ends when the player’s spaceship is hit by an alien's projectile or if the aliens reach the bottom of the screen. The player earns points by destroying aliens, and the score is displayed at the top of the screen. Levels of Difficulty: # Initialize Pygame pygame.init() # Game window setup screen_width = 800 screen_height = 600 screen = pygame.display.set_mode((screen_width, screen_height)) pygame.display.set_caption("Space Invader Clone") # Colors WHITE = (255, 255, 255) GREEN = (0, 255, 0) RED = (255, 0, 0) # Game clock clock = pygame.time.Clock() # Game Objects class Player(pygame.sprite.Sprite): def __init__(self): super().__init__() self.image = pygame.Surface((50, 50)) self.image.fill(GREEN) self.rect = self.image.get_rect() self.rect.center = (screen_width // 2, screen_height - 50) self.speed = 5 def update(self): keys = pygame.key.get_pressed() if keys[pygame.K_LEFT]: self.rect.x -= self.speed if keys[pygame.K_RIGHT]: self.rect.x += self.speed if self.rect.left screen_width or self.rect.left < 0: self.rect.y += 20 self.rect.x *= -1 class Bullet(pygame.sprite.Sprite): def __init__(self, x, y, direction): super().__init__() self.image = pygame.Surface((5, 10)) self.image.fill(WHITE) self.rect = self.image.get_rect() self.rect.center = (x, y) self.direction = direction def update(self): if self.direction == "up": self.rect.y -= 10 elif self.direction == "down": self.rect.y += 10 if self.rect.bottom screen_height: self.kill() # Initialize game objects player = Player() all_sprites = pygame.sprite.Group() all_sprites.add(player) aliens = pygame.sprite.Group() for i in range(5): for j in range(5): alien = Alien(100 + i*60, 50 + j*50) aliens.add(alien) all_sprites.add(alien) # Main Game Loop running = True while running: clock.tick(60) # 60 FPS for event in pygame.event.get(): if event.type == pygame.QUIT: running = False # Update game objects all_sprites.update() # Check for bullet-alien collisions for bullet in all_sprites: if isinstance(bullet, Bullet): if pygame.sprite.spritecollide(bullet, aliens, True): bullet.kill() # Destroy bullet and alien score += 10 # Draw everything screen.fill((0, 0, 0)) all_sprites.draw(screen) pygame.display.flip() pygame.quit()
14 days ago11 proposalsRemoteVideo Editor & Motion Design - Storyteller
Do you like any of the following? - Animation - Stories - Documentaries If so, then you’re in good company! We’re creating an animated true crime video series and looking for a skilled Video Editor to join our team. This is not your usual editing role—you’ll be combining animations, stock footage, and audio to create engaging and suspenseful videos. If you love telling stories through video and have experience with motion design, this job is for you. What You’ll Do: - Tell Stories Through Video: Edit animations, stock footage, and illustrations into videos that capture and hold attention. - Set the Mood: Use pacing, transitions, and sound to build suspense and excitement. - Blend Different Media: Combine animations, illustrations, and stock footage to create seamless visuals. - Add Motion Design: Use light animation and effects to bring static images and footage to life. - Polish Final Videos: Ensure everything looks smooth, professional, and ready for the audience. Why Work With Us? - Long-Term Partnership We value lasting relationships. Many freelancers have worked with us for over two years. - Learning Curve We provide detailed feedback to help you improve and streamline the process over time. - Meet Deadlines Stick to agreed deadlines and keep us updated. Let us know early if delays arise. - Follow Our Guides Our detailed guides ensure an efficient workflow—just follow them carefully. What We’re Looking For: - A strong portfolio showcasing video editing and 2D motion design skills. - Proficiency in tools like Adobe Premiere Pro (video editing) and Adobe After Effects (motion design). - A keen eye for storytelling, pacing, and visual flow to create engaging and suspenseful videos. - Experience blending animations, illustrations, and stock footage into cohesive visuals. - A passion for true crime storytelling and bringing narratives to life visually. **IMPORTANT: We are specifically looking for video editor with experience / strong interest in 2D motion design. Are you interested? If so, please apply with these 2 things: 1. What are your favorite YouTube channels? 2. Attach your portfolio (please highlight the most relevant content piece)
11 days ago12 proposalsRemotepre-funded
Create an animation from a PSD graphic
Im looking to animate an image from a PSD graphic to create a video version of a still image. See image attached.
16 hours ago42 proposalsRemoteEmail Signature Animated
A client seeks an innovative and stylish animated email signature to elevate their professional brand. The desired deliverable is a seamlessly integrated signature featuring subtle motion to capture attention yet remain understated and refined. A short animated element, such as a subtle looping GIF, would complement crisp typography and selectively used hues in a balanced, aesthetically-pleasing composition. Candidates proficient in creative visual design and technical implementation of email signatures are encouraged to submit thoughtful proposals demonstrating their expertise in transforming concepts into polished, pixel-perfect productions meeting the objectives described while bringing a fresh, on-trend perspective. Experience crafting tasteful animations integrated cohesively into email branding is preferred.
8 days ago23 proposalsRemote30 Second Animated Video with Voice Over
Hello, I'm looking to sort an animation to demonstrate how a game would work. It should last around 30 seconds with voice and basic lip sync. Step A: Only one player selects an image from the picture wall on Slide 3. Step B: The host then introduces and asks the question. Step B: The question UI appears on the screen for the player. Step C: The player has a limited time to answer the question. Step D: The player answers the question. If correct then it is displayed on the screen with a celebratory animation, the correct answer shown in the UI and a 5 seconds of the song being played. Vector graphics can be supplied and I hopefully can provide other elements on request. I can supply artwork before quotation on request, but an NDA will be required.
3 days ago39 proposalsRemoteA THREE JS Animation for a logo
We need a THREE JS Animation for a logo, which is SVG format. Similar to the loading animation on this website. Reference: https://saihoji-kokedera.com/en/ Please send your animations in THREE.js, we will also consider Lottie animations as well. Thank you.
10 days ago30 proposalsRemoteI need a short animation intro clip for a jewellery company
I need a short animation intro clip for a jewellery company, a professional animation only a few seconds long. It must include the company logo.
6 days ago30 proposalsRemoteExplanatory video
I need an animator to prepare a two-minute explanatory video with animation and voiceover for our organization which provides documentation solutions for hospitals and clinics. I can only provide the contents to be included in the video. Rest everything needs to be completed, including voiceover. Expect good animation quality, screenplay and accent (US). Work need to be completed by January third.
10 days ago33 proposalsRemoteAnimated Wedding Save the Date and Invites
Hi Designers, Looking for a designer to create two items: 1. Animated Wedding Save the Date 2. Animated Wedding Invite The wedding will be in Cairo Egypt so would like it to be elegant, classy and reflect the location so utilisation of Pyramids and Camels. Please share examples that you’ve done and not templates as Canva doesn’t really have this. The wedding date or period is from the 1st to the 4th of May.
15 days ago17 proposalsRemoteAnimated Wedding Save the Date and Invites
Hi Designers, Looking for a designer to create two items: 1. Animated Wedding Save the Date 2. Animated Wedding Invite The wedding will be in Cairo Egypt so would like it to be elegant, classy and reflect the location so utilisation of Pyramids and Camels. Please share examples that you’ve done and not templates as Canva doesn’t really have this. The wedding date or period is from the 1st to the 4th of May.
15 days ago17 proposalsRemoteDigital content editor / Multimedia Specialist Role
This is for a long term role within this company. Are you a creative person? Can you create engaging visual content? Are you looking to grow a career within a company? Then this is the role for you! Overall Responsibilities and Duties - Creating visually appealing graphics - Editing videos - Adding animations to videos - Creative thinking with an excellent eye for detail - Knowledge of post-production techniques - Understanding of computer software used for planning, editing and scripting Specific roles - Video Editing: Edit raw video footage, cut and assemble video clips, and enhance video content by adding transitions, sound effects, music, and voiceovers to create a polished final product. - Graphic Animation: Design and produce motion graphics and 2D/3D animations to accompany videos or create standalone content. - Collaborative Production: Work closely with the creative team, including content strategists, designers, and marketers, to ensure the video and animation work aligns with project goals and brand guidelines. - Content Optimization: Optimize video files for different platforms and social media channels, ensuring compatibility with varying specifications and audience engagement metrics. - Visual Storytelling: Use your expertise in editing and animation to enhance the narrative of videos, ensuring clarity, engagement, and consistency with messaging. - Brand Consistency: Ensure all video and graphic work adheres to the brand’s style, voice, and visual identity. Qualifications and Skills - Self-motivated, highly organised, detail-oriented and creative thinker. - Experience minimum 1+ years in content creation including videography and can demonstrate results achieved in previous roles in any of the above social media platform - The ability to work independently and quickly, with a proactive work-ethic. - Being able to work within and enthusiastic team - Being able to take feedback Salary ranges from £100-200 per month depending on experience. Software Expertise - Adobe Premier Pro - Adobe After Effects - Adobe Audition - Photoshop - Canva
16 days ago13 proposalsRemoteVideo editor and content editor
This is a long term role for someone to join our video editing team. You will be sent videos and you will need to edit them, add animations, graphics to make them appealing and stand out. There will be certain targets that will need to be met, for example a 50 videos edited and produced each month for this price.
2 days ago28 proposalsRemoteopportunity
3D motion graphics design
Hello, I am looking for a professional 3D animator to do a 45 seconds 3D motion graphics. - It doesnt include Character animation - Design and visuals should be high end and catchy - Duration is only 45 seconds. Please send me your previous 3D motion graphics work. Thank you very much.
13 days ago36 proposalsRemoteJob Description: Freelance Video Animator (UK-Based)
Job Description: Freelance Video Animator (UK-Based) We are looking for a talented Video Animation Freelancer to join our extended team for an exciting and immediate project, with potential for ongoing work. The ideal candidate will not only be able to create exceptional video assets but will also guide and advise us on creative direction and strategy for various video projects. About the Role: Our immediate need involves collaborating on a client project where an initial video asset has been produced by their designer for a social campaign. We require someone to work with the source file to elevate the video, adding the right creative enhancements to deliver a polished, impactful output. This will include contributing strategically to help us determine the best approach and direction for the video. •••This particuar file has been produced in Adobe After Effects so its probably important that you can work in this system.••• Here is the link to the video file: https://drive.google.com/file/d/1bCfDe_RQbAQSxyAl4-c7UkRUbsIgF-nk/view?usp=sharing What We’re Looking For: - Immediate Availability: We need someone who can hit the ground running and assist with this project right away. - UK-Based: As this is a client-facing role, we require someone comfortable speaking directly with clients alongside our team, without language or time zone barriers. - Strategic Input: You’ll bring creative insight to the table, helping guide us and our clients on video direction and improvements. - Technical Expertise: Ability to work with existing video source files to enhance and refine them to meet campaign objectives. What We Value: - Strong Communication Skills: You’ll be working closely with both our team and clients to deliver the best results. - Proven Experience: We’re looking for someone with a strong portfolio of previous work that aligns with similar projects. - Collaborative Approach: A team player who can seamlessly integrate into our workflow and help us deliver outstanding results. Key Responsibilities: - Review and improve existing video assets based on campaign objectives. - Provide strategic guidance on creative direction and enhancements. - Communicate directly with clients alongside our team to ensure alignment and clarity. - Deliver high-quality, polished video outputs within agreed timelines. Application Requirements: - Examples of previous work, ideally aligned with social campaign videos or similar projects. - Indicative costs or hourly rates for this project and ongoing work. What We’re Offering: This is an hourly, ongoing freelance role. While we’re starting with this specific project, we anticipate future opportunities for additional video projects as they arise. If you think you’re a great fit for this role and are ready to jump into an exciting project, we’d love to hear from you. Thanks, Warren
7 days ago13 proposalsRemoteopportunity
3D animation is needed
Hi professionals! We are looking for a clothing animator who can create 3D visualization of the dress corset with opening and clothing mechanism. We already have a short basic video of the mechanist but need more professional illustration. Please send examples of your previous work and quotes.
24 days ago38 proposalsRemoteJapanese VO artist (male and female), plus subtitle syncing
Stage 1: We are looking for 2 Voice Over artists, 1 male, 1 female to record VO in Japanese for 25 short (1-3 mins) animations, and 2 case studies on security topics, a total of ~20mins each. The animations need to be in a professional tone, the case studies in a more conversational, warm tone. Deliverables: separate mp3 files for each line of script, for each animation and case study. Stage 2: Ideally, the Japanese speaking VO artists would use Premiere Pro to sync the voice to the animations and replace the English on screen text for the Japanese translation. For 12 animations, we require transcription, syncing and export of the srt files for subtitles. Deliverables: separate mp4 files for each animation, exported from Premiere Pro. 12 x srt & vtt files of synced subtitles. We will require a test to be done, for which we will provide a pack that outlines the task and includes the necessary assets.
17 days ago5 proposalsRemoteExplainer Video Animator to Create 2 Animated Videos for our App
We are looking for a talented explainer video animator to create two short but high-quality animated videos that clearly demonstrate how our new product works. Both videos will be very similar in style and structure, with each animation including a voice-over something similar to this https://vimeo.com/146625033/6a92d27f48 . The videos need to highlight the following: -Our unique selling points (USPs) -Why customers should choose us -How we are cost-effective -A walkthrough of our application with snippets showing how to use it - And more Both videos must be clear, engaging, and informative, ensuring that viewers understand the key features of our product and its value. You will need to bring your creativity to the table while maintaining focus on delivering concise, visually appealing animations that reflect our brand and message. Key Requirements: -Strong portfolio showcasing previous explainer videos or product animations -Experience in motion graphic design and video production -Ability to integrate voice-over with animations seamlessly -Ability to include real snippets of our application -Ability to create two similar but distinct videos, maintaining consistency while adjusting for any minor differences in the content If you're passionate about creating clear and impactful animations that help businesses showcase their products effectively, we’d love to hear from you! Please Note: Do not use AI-generated responses. We will only consider applicants who have specifically reviewed our requirements and can demonstrate they have tailored their response to meet the needs of this project, rather than sending generic applications.
24 days ago23 proposalsRemote