What are all the animations can we do in JointJS? - jointjs

I what to know what kind of animations that JointJS provides?
is there any documentation or link that I can refer?

You can read about transition available in JointJS here

Related

Fabric.JS sizing guidelines

I've been trying to add sizing guidelines for my app built on FabricJS. I see the library provides guidelines for alignment and centering but not for sizing. I did some search on the web and I was not able to find it. I also tried to create it but I could not.
https://github.com/fabricjs/fabric.js/blob/master/lib/aligning_guidelines.js
https://github.com/fabricjs/fabric.js/blob/master/lib/centering_guidelines.js
So, if you know a library that does that or if you can point me out a direction I appreciate. Thanks in advance.

Horizontal Scrolling Cards just like Recent Apps of Lollipop in Android?

I found a library, this library supports vertical scrolling cards, I want to change this library according to my needs (Horizontal scrolling).
Can anyone suggest how to implement Cards just like the mentioned library cards horizontally.
Guys I just found a library, which helped me to solve this issue.
Carousel Library
Best Library I found which I customized for my project:
https://github.com/applm/CarouselWidget
Other helpful libraries:
https://github.com/davidschreiber/FancyCoverFlow
https://android-arsenal.com/details/1/3289
I hope, this answer may help you in finding solution.
As I always suggest to ask an author and this time I'm the author of this library, I'll tell you what to do.
RecentsList is very simple and the only place you have to change is here: https://github.com/ZieIony/MaterialRecents/blob/master/app/src/main/java/tk/zielony/materialrecents/RecentsList.java#L127 . This method layouts cards inside container. You have to write your own layouting logic.
Why I don't implement that change? Because I'm not sure what do you mean by horizontal cards. Lollipop in landscape orientation shows vertical cards (at least the one I have on my desk).
The second reason is that I think I should rewrite this library from scratch. It was just an experiment with custom layouting code. Correct implementation would use view reusing and recycling just like RecyclerView and ListView do.

Android UI: What is a good tutorial or resource for image/icon transition animation

I have seen fancy icon transition animations for loading or waiting for process to finish. The icons transitions have splash animations or something similar to animated gifs and then some actual explode like effect on finish loading for a resource in the Android App.
I would like to find tutorial or resources to help me develop these button, icon, small image, transition animations. I really need some help on this, please help.
Please help me with your knowledge on learning or sample code or resources on learning to implement these things for Android UI. thanks in advance.
You should use TransitonDrawable, apply it to your ImageView, and you've got a nice transition. There is a tutorial for that here.
If you want more advanced stuff like movement or rotation, look at the AndroidViewAnimations sample app on GitHub. There is also a tutorial here.
You can also use GifImageView if you want to display a GIF animation.

gtk3 animated progress bar not possible?

In gtk-2 it was possible to make an animated striped progressbar. Is this really not possible with gtk-3? I've looked everywhere on the internet and at the gtk-3 documentation and have not found anything that indicates that it is possible.
Do you mean, you want the GtkProgressBar pulsing? Use gtk_progress_bar_pulse (GtkProgressBar *widget). If this is about Theming gtk, animation control by the engine. For more animation you have to code the engine yourself, unfortunately, which is same with gtk+-2.0. Read GtkStyleContext documentation for more clearer.

Full screen responsive horizontal website

I am trying to find the best method in order to create a horizontal website, full screen and if possible responsive, minimum width to be for tablets. The thing is that I need also the horizontal scrolling with the mousewheel, and I saw that fullPage.js doesn't support that or at least i couldn't manage to make it work on this plugin.
Anyway, I need an idea on building the template, with full screen sections displayed inline - I will be very grateful for any tip. Thanks.
Making horizontally responsive is bit tricky and requires a lot of effort.. There can be many many design approaches for making it responsive. It can't just be described with JSFiddle snippets..
However, I have something for you that will definitely get you started with "Horizontal Responsive Layout designing"..
This is must guide / tutorial for people who want to get started with Horizontal Responsive approach
http://tympanus.net/codrops/2012/04/02/responsive-horizontal-layout/
you could use one of the tools listed in the following links
http://www.cssdesignawards.com/articles/15-excellent-jquery-plugins-to-spice-up-your-sites/44/
http://jquery-plugins.net/scrollit-js-jquery-plugin-for-scrolling-pages
or you could also mix raw js/jquery with anchor links and add animations when clicked. in taht case you can scroll down using mouse wheel and also have fancy animations when a link is clicked
regarding responsiveness use css media queries

Resources