Jump to content
Search Community

mandooraj

Members
  • Posts

    18
  • Joined

  • Last visited

Posts posted by mandooraj

  1. Hi,

     

    I am really excited to showcase my new product which is built on top on GSAP mainly! (Also I found it a chance to promote my product)

     

    greetmas-social-card.png

      

    Greetmas is free christmas greeting HTML template with minimal typographic animations which would be perfect for any agency (or) business to wish their visitors, clients and business partners a Merry Christmas and Happy New Year.

    1) It's easy to use and customize

     

    2) You can send personalized greeting link to your clients by email

     

    3) From your webpage, the clients can send their friends, personalized greeting and share it via facebook, whatsapp, twitter


    Please check the demo here.

     

    If you like the product, please upvote on producthunt.

    • Like 1
  2. Hi,

     

    I am really excited to showcase my new product which is built on top on GSAP mainly! (Also I found it a chance to promote my product)

     

    Fides is an unique, essential intro teaser template with minimal typographic animations which would be perfect as landing pages for Black Friday, Cyber Monday, Christmas, New Year. It is suitable for all niches and easily customizable. Following is the part of the preview of the intro. Since the file upload size is restricted, i inserted a very small portion of the intro here. To view the full intro, please click here.

     

    ezgif-3-c2b600bcd727.gif.2d922e02fdf9e71d14af80ea744c7ffa.gif

     

     

    If you want to buy my product, please click here.

     

    Please let me know your thoughts on this....

     

    Thank you

     

    Cheers,

    Sven.

    • Like 1
  3. 7 hours ago, mandooraj said:

    which uses GSAP) for you to start with.

    The purpose of first draft is not to get it right, but to get it written. Get

    Hi Carl,

    Thanks for the feedback.

    Actually one needs to enter the value as 0 and then clicking on the button "I want this" will take him to the "Download page". 

    I will put a note on the product page. 

    Thank you

    Cheers,

    Sven.



     

  4. Hi,

    I recently launched a freebie "The First Draft" HTML Template. It's just a bunch of super minimal responsive html templates with simple animations(which uses GSAP) for you to start with.

    The purpose of first draft is not to get it right, but to get it written. Get your Coming soon, Personal Website, Domain For Sale, 404 page ready within minutes. Don't let your website sit blank! Start Now! Spend not more than a few minutes to get your first draft ready!

    Demo URL - http://svencreations.com/thefirstdraft/preview/

     

    ProductHunt - https://www.producthunt.com/posts/the-first-draft

    Please let me know your thoughts and  share it with your friends if you like it.

    Thank you

    Cheers,
    Sven.

  5. Thanks a lot for your feedback....Really valuable feedbacks... 

    Cheers

    2 hours ago, boynet said:

    amazing.

    little thing that can help you sell more is use js script to build the scene instead of php

     

    On 27/07/2017 at 3:24 AM, happy5 said:

    I'm new to this forum and just found out about GreenSock. Your animation (or typographic intro) just saved me a lot of effort. 

     

    May I suggest eventually making a shorter intro (such as 30 seconds). Yes, it would be fewer words, but some clients/projects may not require as much. 

     

     

     

     

  6.  

     

    Actually the credits should go to Mnemonick . He created the intro in after effects first. I coded it in JS using GSAP.

     

    Thank you Carl and PointC.

    7 hours ago, PointC said:

    Well done. :)

     

    As an After Effects animator, I can attest as to the time it takes to make an animation hit the beats of the music correctly. Your intro should be a great time saver. Thanks for sharing. Keep up the good work.

     

    Happy tweening.

    :)

     

  7. Hi,

     

    I am really excited to showcase my new product which is built on top on GSAP mainly! (Also I found it a chance to promote my product)

     

    Have you ever been fascinated by Apple – iPhone 7 and iPhone 7 Plus in 107 seconds” advert (or) “Introducing Pixel, Phone by Google” advert? Our product is kinda similar.
     
    Stomp - A typographic Intro.
     

    https://goo.gl/nYZG8t

    It is a typographic intro HTML template for your product landing page, coming soon page. Just good rhythm and typography. It contains exactly 100 words. You just replace the words using stomp generator(written in PHP) provided with the download package. You could add images/videos to individual scenes in the HTML file. Everything is documented. It’s that simple.

     

    stomp-dribbble.gif.cff3ed7efe951f15d1cda2a469d6d48e.gif

     

    Please let me know your thoughts on this....

     

    Thank you

     

    Cheers,

    See the Pen by nYZG8t (@nYZG8t) on CodePen

    • Like 1
  8. Thanks for your appreciation, OSUblake.

    Themeforest reviewer felt that  this template doesn't offer enough flexibility for a Coming Soon template and suggested me to submit to codecanyon. 
     

    I made a few modifications like adding replay, speed controls and submitted the template to codecanyon.

     

    Now, Codecanyon reviewer felt that This item is better suited for ThemeForest and suggested me to submit to themeforest.

     

      :unsure:  :unsure:

  9. We(My Designer friend and I) tried to create a unique coming soon template using GSAP and ended with this one. Check the preview here.

    It got rejected by both themeforest and codecanyon. I am just trying to re-submit it in the marketplace. 

    What do you guys think about the template? 

     

  10. Hi,

     

    I have tried a simple implementation of sliding animation(using scrollto plugin) which works smooth in firefox. in chrome with the evernote extension being disabled, the animation is smooth. when the extension is enabled, there occurs a stutter in the animation. Do you have any ideas? Here is my code

    <div class="animation-container">
    			<div class="slide" id="slide-1"></div>
    			<div class="slide" id="slide-2">
    				
    			</div>
    		</div>
    
    body, html{
        height: 100%;
    }
    
    body {
    	background: none #D8D6C3;
    	overflow: hidden;
    }
    
    .animation-container {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: 1;
    }
    
    .slide {
        position: relative;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: 2;
    }
    
    #slide-1 {
        background: none transparent;
    }
    
    #slide-2 {
    	background: none #000000;
    }
    
    //References to DOM elements
    var $window = $(window);
    var $document = $(document);
    var $slidesContainer = $(".animation-container");
    var $slides = $(".slide");
    var $currentSlide = $slides.eq(1);
    
    //The height and width of the window
    var pageHeight = $window.innerHeight();
    var pageWidth = $window.innerWidth();
    
    
    var slideAnim = new TimelineMax({paused: true});
    
    // Initial Fill Animation
    slideAnim.to($slidesContainer, 1, {scrollTo: {y: pageHeight * $currentSlide.index() }, ease: Circ.easeOut});
    slideAnim.to($currentSlide, 1, {backgroundColor: "#0f0318"}, "-=1");
    
    slideAnim.play();
    

    Thank you

×
×
  • Create New...