Всем привет!
помогите с кодом. не работает. должно при угле выше 90 срабатывать tweemax
Cпасибо!
var crug = document.getElementById('crug');
Draggable.create(crug, {type:"rotation", throwProps:true,
OnDrag: function()
{
var angle = this.target._gsTransform.rotation;
if (angle > 90) {
TweenMax.to("#b1", 1, {fill:"#ffffff"});
};
}
});