You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 26, 2023. It is now read-only.
I'm confused a bit by the documentation. From another ticket I can see that the parent element must be a background correct? Is it also true that all the elements must have a position relative below that parent?
When I implement this using jQuery I have
`(function ($) {
$(document).ready(function() {
$('.group-header-inner').translucent({
background: '.group-header', // id or class name
filterValue : 5, // int
cardColor : 'clear', // preset color or your own color
shadow : true // true or false
});
});
}) (jQuery);