Jump to content

7 posts in this topic

Recommended Posts

Posted

G     O     G     G     W     E    L     L


 


 


Hi! I recently got Edge Animate CC, which is a tool used to design animated stuff for the web. No coding is required, but when you're finished the stuff you create converts into HTML5 so you can paste it into your code.


 


Now, anyone here know how to use it? Cause I really need some pointers. I have no idea how to use it.


 


I know DreamWeaver, Muse, Photoshop, Illustrator and Lightroom. That's basically it.


Posted

I've already watched the first few video tutorials, but I still do not understand how to work the basics of Edge Animate. I am being legit.

Posted

I've already watched the first few video tutorials, but I still do not understand how to work the basics of Edge Animate. I am being legit.

Well, we just heard about it so yeah. :p

Posted

:p Well then, I'll just have to keep watching the videos

 

In the mean time, here's something random for you guys:

var main = function() {
  $('.article').click(function() {
    $('.article').removeClass('current');
    $('.description').hide();

    $(this).addClass('current');
    $(this).children('.description').show();
  });

  $(document).keypress(function(event) {
    if(event.which === 111) {
      $('.description').hide();

      $('.current').children('.description').show();
    }

    else if(event.which === 110) {
      var currentArticle = $('.current');
      var nextArticle = currentArticle.next();
      
      currentArticle.removeClass('current');
      nextArticle.addClass('current');
    }
  });
}

$(document).ready(main);
Posted

:p Well then, I'll just have to keep watching the videos

 

In the mean time, here's something random for you guys:

 

var main = function() {
  $('.article').click(function() {
    $('.article').removeClass('current');
    $('.description').hide();

    $(this).addClass('current');
    $(this).children('.description').show();
  });

  $(document).keypress(function(event) {
    if(event.which === 111) {
      $('.description').hide();

      $('.current').children('.description').show();
    }

    else if(event.which === 110) {
      var currentArticle = $('.current');
      var nextArticle = currentArticle.next();
      
      currentArticle.removeClass('current');
      nextArticle.addClass('current');
    }
  });
}

$(document).ready(main);

Looks like JavaScript. :mellow:

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
  • Create New...

Important Information

We would like to place cookies on your device to help make this website better. The website cannot give you the best user experience without cookies. You can accept or decline our cookies. You may also adjust your cookie settings. Privacy Policy - Guidelines