09.10.2019, 07:12
(This post was last modified: 09.10.2019, 08:07 by Erwin van der Zwart.)
Hi,
I think you are looking for this: https://forum.logicmachine.net/showthrea...1#pid10711
For the fading on active widget you can try this:
BR,
Erwin
I think you are looking for this: https://forum.logicmachine.net/showthrea...1#pid10711
For the fading on active widget you can try this:
Code:
$(function(){
setInterval(function() {
$('.layer-widget').each(function( index, element ) {
if ( $(this).is(':visible') == true) {
$(".plan").css("opacity", 0.4);
$(".plan").css("transition", "opacity 1s ease-in-out");
$(".plan").css("-moz-transition", "opacity 1s ease-in-out");
$(".plan").css("webkit-transition", "opacity 1s ease-in-out");
} else {
$(".plan").css("opacity", 1);
}
});
}, 500);
});
BR,
Erwin