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
Thanks for maintaining this repo --looks great**!**
Any ideas how to implement transparency for the triangles (globally or specifically)?
The README doesn't seem to mention anything relevant and the source, while making using of rgba() appears to ignore the alpha (transparency) values.
Thanks for maintaining this repo --looks great**!**
Any ideas how to implement transparency for the triangles (globally or specifically)?
The README doesn't seem to mention anything relevant and the source, while making using of rgba() appears to ignore the alpha (transparency) values.
I tried modifying the following lines (see http://codepen.io/wouwi/pen/Apvaq) without success:
Line-382:
original:
this.opacity = FSS.Utils.isNumber(opacity) ? opacity : 1;
modded:
this.opacity = FSS.Utils.isNumber(opacity) ? opacity : 0.5;
Line-405
original:
this.hex = '#' + r + g + b;
modded:
this.hex = '#00' + r + g + b;
The text was updated successfully, but these errors were encountered: