Search code examples
aframe

How can I resize the font of the title attribute in a A-Frame <a-link>


I created an element with document.createElement('a-link') then I set the title attribute with : setAttribute('title','TITLE') and I can see the title but the font is too small. Is there a way to set the font size ?


Solution

  • You can reach into the a-link entity and change the text size:

    linkEl.querySelector('[text]').setAttribute('scale', '2 2 2');
    

    Checkout the code on glitch