Procreate on LinkedIn: Learn Procreate Dreams with two months free access to Skillshare’s growing… (2024)

Procreate

25,697 followers

  • Report this post

Excited to announce more Procreate Dreams classes have been added on Skillshare, with Smitesh Mistry, Rich Armstrong, Mimi Chao, and many more helping you get started with our new animation app. Check out our latest Insight article for all the details. https://lnkd.in/gVcJs6aX

Learn Procreate Dreams with two months free access to Skillshare’s growing library of classes for creatives. - Procreate® Insight procreate.com

134

Like Comment

To view or add a comment, sign in

More Relevant Posts

  • Adrian Campagnolle

    I help tech and web3 companies close more business & attract more signups by crafting engaging and compelling motion experiences. - Founder of Possimpible Studio

    • Report this post

    How does a logo animation communicate the essence of a brand? That's something we constantly ask ourselves at Possimpible Studio when working on a brand animation project. We worked during the past couple of days on a logo animation concept for SharesShares is a investing app, looking to democratize and make investment accessible and fun for all. With that initial info in mind, we started brainstorming on the concept for the animation. Since shares is looking to make investing fun for everyone, our goal was to make the animation as playful and dynamic as possible. We achieved that with the use of dynamic scales up and down, with a lot of bouncing and with a upbeat rhythm. For the story of the animation we needed to show 2 elements: - text bubbles: to remind that shares has community built in it's core and that user can join communities to discuss stock picking and everything finance related. - the idea of growth with an abstract stock graph Finally, we wanted with the animation to remind the idea that stocks can go up or down, that's why we opted with this wavy animation.What do you think of it? Benjamin Chemla 👋 If you don't know us,Possimpible Studiois a 2D/3D animation and motion design focused studio working with international clients to elevate their message and brand through impactful and story telling animations.Have a project? feel free to reach out:hello@possimpible.studioMore of our work:www.possimpible.studio#brand#branding#animation#motiondesign#logo#logoanimation#growth#design#storytelling#growing#brandanimation #shares #investing #app #stocks #finance #community #investment

    • Procreate on LinkedIn: Learn Procreate Dreams with two months free access to Skillshare’s growing… (7)

    54

    Like Comment

    To view or add a comment, sign in

  • Vijay Navale

    SDE @Jio | Frontend developer | JS | React

    #js #animations If we want to do a animation through js, one of the way to do is with the help of setTimeout or setInterval. But there is drawback when doing animations with this timers, one such drawback is- If using setInterval, sometimes its callback function execution itself takes lot of time, due to that next call to callback will try to execute immediately and will result in laggy animation.To avoid this and to have a smoother, performant animation javascript provides `requestAnimationFrame()` on window object. It has advantages such as,- The animation works with respect to user's device refresh rate. It takes a callback as parameter and invoke it before next repaint. - Most of the devices has a refresh rate of 60Hz, result in 60fps smoother animation. - One of the key feature of this method is that, it pause it's invocation if browser tab is inactive leads in improved performance and battery life.- If refresh rate is more like 120Hz, 144Hz then animation can feel faster, to prevent this method passes a timestamp to it's callback parameter, which we can use to relatively adjust animation time.- Sample code for animating box from left to right:-<p id="box"></p><script> let box = document.getElementById("box");let startTime;let boxProgress;const animate = (timestamp) => {if (!startTime || boxProgress > 500) startTime = timestamp;boxProgress = (timestamp - startTime) / 10 + 60;box.style.transform = `translateX(${boxProgress}px)`;window.requestAnimationFrame(animate);};requestAnimationFrame(animate);</script>

    15

    Like Comment

    To view or add a comment, sign in

  • Kyaw Soe Win

    Experienced Mobile Developer | Android Developer | Mobile Engineer | Specializing in Kotlin and Flutterin mobile application development

    • Report this post

    animated_text_kit lib for flutter is good to make animation for text. You can check the following for detail usage.https://lnkd.in/g2KRvEp3#flutter

    animated_text_kit | Flutter package pub.dev

    9

    Like Comment

    To view or add a comment, sign in

  • CSS Monster

    84 followers

    • Report this post

    Square Button Animation with Emoji, Shadow, and Particle Popper EffectExperience an engaging button interaction with our square button animation. This captivating effect combines square elements, expressive emojis, dynamhttps://buff.ly/3NBHLzG

    Square Button Animation with Emoji, Shadow, and Particle Popper Effect https://cssmonster.com
    Like Comment

    To view or add a comment, sign in

    • Report this post

    Animations can help to increase conversions and improve the user experience. Plus, they're a great way to create a more memorable experience for your customers.In our latest blog post, we show you how to add a simple animation to your add to cart button using Bootstrap 5. It's easy and only takes a few minutes!Ready to get started? Click the link in our profile to read the full blog post and learn how to add an animation to your Bootstrap 5 add to cart button today!#bootstrap#bootstrap5#css#addtocartbutton#animation#webdevelopment#webdesign#ecommerce#conversionoptimization

    Like Comment

    To view or add a comment, sign in

  • Michael Hoffmann

    💚 I'm helping developers to become Vue.js experts | 👨🏻💻 Senior Frontend Developer | 🌴 Freelancer | ✍️ Blogger | Building codesnap.dev | weekly-vue.news

    • Report this post

    📕 Creating animated logos with Lottie and Vue 👉🏻 Lottie is a JSON-based animation format that is only half the size of other animation formats. 👉🏻 This article introduces Lottie’s features and walks readers through the process of creating a Lottie animation and integrating it into a Vue 3 application.

    Creating animated logos with Lottie and Vue 3 - LogRocket Blog https://blog.logrocket.com

    1

    Like Comment

    To view or add a comment, sign in

  • Priyesh Tiwarkar 🧑💻

    Founder @ON. - Web Strategist for Coaches

    • Report this post

    How to create a scroll text animation in Figma..If you want a website that can sell for you and connect with your target customer. Then book a free call with me. Link is in comments!PS: 🔁Repost this post and I'll personally send my secret tutorial to youIf you want more such content, then followPriyesh Tiwarkar 🧑💻#websitedesign#websitedevelopment#websitedesigner#websitedeveloper#websiteoptimization#websiteoptimization

    57

    32 Comments

    Like Comment

    To view or add a comment, sign in

  • SVGator

    830 followers

    • Report this post

    🚨 Lottie JSON Explained ⚠️Read the beginner's guide to the Lottie Format⬇ You’ll be creating Lottie animations with SVGator soon 🥳https://lnkd.in/dMBJYVxD #LottieFormat #Lottie #animation #JSON #resources #learndesign

    What Is Lottie? A Beginner's Guide to the Lottie Format svgator.com

    16

    Like Comment

    To view or add a comment, sign in

  • Akshay Vishwakarma

    ReactJs | Web Developer

    • Report this post

    in your post Animating a website is a great way to captivate your audience and make your content more engaging. 🤩 But, when it comes to choosing the right animation library, it can be difficult to know where to start. 🤔 With that in mind, I'm here to share some of my favorite CSS animation libraries and tips to help you get the job done quickly and easily. 🤓 First up, #Animate.CSS offers a wide variety of animations for you to choose from, including bounce, sliders, fadeouts, and more. 🤗 It's incredibly easy to use, and you can get up and running in seconds. 💪 Next, #Greensock provides some truly cutting-edge animation capabilities. 🔥 This library provides a powerful API with a full range of features that takes animation to the next level. 💯 Finally, #AniJS is a great choice if you're looking for a more customizable approach. 🤙 It allows you to control the timing and sequence of your animations, giving you an unprecedented level of control. 🤩 Knowing how to make use of animation libraries is a key skill for any web developer, so I hope these tips help you get started. 🤩 #Animations #WebDevelopment #CSS #CSSAnimation

    2

    Like Comment

    To view or add a comment, sign in

Procreate on LinkedIn: Learn Procreate Dreams with two months free access to Skillshare’s growing… (36)

Procreate on LinkedIn: Learn Procreate Dreams with two months free access to Skillshare’s growing… (37)

25,697 followers

View Profile

Follow

Explore topics

  • Sales
  • Marketing
  • Business Administration
  • HR Management
  • Content Management
  • Engineering
  • Soft Skills
  • See All
Procreate on LinkedIn: Learn Procreate Dreams with two months free access to Skillshare’s growing… (2024)
Top Articles
Latest Posts
Article information

Author: Corie Satterfield

Last Updated:

Views: 6172

Rating: 4.1 / 5 (42 voted)

Reviews: 81% of readers found this page helpful

Author information

Name: Corie Satterfield

Birthday: 1992-08-19

Address: 850 Benjamin Bridge, Dickinsonchester, CO 68572-0542

Phone: +26813599986666

Job: Sales Manager

Hobby: Table tennis, Soapmaking, Flower arranging, amateur radio, Rock climbing, scrapbook, Horseback riding

Introduction: My name is Corie Satterfield, I am a fancy, perfect, spotless, quaint, fantastic, funny, lucky person who loves writing and wants to share my knowledge and understanding with you.