Problem with animation in about

Rate this topic: Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.1.00 out of 6 based on 1 vote(s)
GK User
Sun Sep 29, 2013 11:48 am
Reply with quote
Report this post
Hi,

when I change something (even a word) in a module about, it loses the animation effect.

The same problem happens when I install the jce editor.

I have attached to you two screen to see the issue.
User avatar
Senior Boarder

GK User
Sun Sep 29, 2013 7:00 pm
Reply with quote
Report this post
Hi,
yes we know about it. That's why I suggest to use NoEditor or MirrorCode editor for editing this module!!

All editors like TinyMCE and JCE have options to clean unknown code.
User avatar
Platinum Boarder

GK User
Sun Sep 29, 2013 7:02 pm
Reply with quote
Report this post
User avatar
Platinum Boarder

GK User
Sun Sep 29, 2013 8:16 pm
Reply with quote
Report this post
Thank you for your reply.

I will not use any external editor but I need to do it what I have to do in order not to have any conflict?

Thank you.
User avatar
Senior Boarder

GK User
Sun Sep 29, 2013 8:54 pm
Reply with quote
Report this post
There should not be any conflicts - the problem is cleared code of animation.

1) We use The <figure> element --> read: http://html5doctor.com/the-figure-figcaption-elements/
2) We use "animate_queue" class which is connected with CSS3 animations

Code: Select all
/* Team - animation */
.gkTeam figure.animate_queue_element {
   opacity: 0; filter: alpha(opacity=0);
   position: relative;
   top: 100px;
   -webkit-transform: scale(0.75);
   -moz-transform: scale(0.75);
   -ms-transform: scale(0.75);
   -o-transform: scale(0.75);
   transform: scale(0.75);
   -webkit-transition: all .4s ease-out;
   -moz-transition: all .4s ease-out;
   -ms-transition: all .4s ease-out;
   -o-transition: all .4s ease-out;
   transition: all .4s ease-out;
}

.gkTeam figure.animate_queue_element.loaded {
   opacity: 1; filter: alpha(opacity=100);
   top: 0;
   -webkit-transform: scale(1);
   -moz-transform: scale(1);
   -ms-transform: scale(1);
   -o-transform: scale(1);
   transform: scale(1);
}

/* Portfolio - animation */
.gkNspPM-Portfolio .animate_queue_element {
   opacity: 0; filter: alpha(opacity=0);
   position: relative;
   -webkit-transform: scale(0);
   -moz-transform: scale(0);
   -ms-transform: scale(0);
   -o-transform: scale(0);
   transform: scale(0);
   -webkit-transition: all .4s ease-out!important;
   -moz-transition: all .4s ease-out!important;
   -ms-transition: all .4s ease-out!important;
   -o-transition: all .4s ease-out!important;
   transition: all .4s ease-out!important;   
}

.gkNspPM-Portfolio .animate_queue_element.loaded {
   opacity: 1; filter: alpha(opacity=100);
   top: 0;
   -webkit-transform: scale(1);
   -moz-transform: scale(1);
   -ms-transform: scale(1);
   -o-transform: scale(1);
   transform: scale(1);
}
User avatar
Platinum Boarder


cron