2
I am new in front end in general, I have basic knowledge of html and css, I would like to use the materialize and understand this function here. http://materializecss.com/css-transitions.html
because I try to use these codes present on the page only that I can not use the "Toggle Scale" on my page
<!-- Scaled in -->
<a id="scale-demo" href="#!" class="btn-floating btn-large scale-transition">
<i class="material-icons">add</i>
</a>
<!-- Scaled out -->
<a id="scale-demo" href="#!" class="btn-floating btn-large scale-transition scale-out">
<i class="material-icons">add</i>
</a>
I already inspected the page itself to see how they did but in practice I can never use this function to click and hide an object, copied the codes to mine but still not right (the files of materialize are organized and copied the html that they recommend)
<a id="scale-demo-trigger" href="#!" class="btn right">Toggle Scale</a>
I even used this source code above present on the page to activate the "Toggle Scale" but even so does not work, I would like a functional example if possible for me understand in practice, from now, thank you.
Set the library scripts?
– Willian Coqueiro
From what I saw. You didn’t set the library. This link is explaining. Take the option for Cdn for being the fastest. http://materializecss.com/getting-started.html
– Willian Coqueiro
Yes, I put everything correctly as it is on the site, because the other components are working, I did not know that in the case this "css Transition" of materialize had to define the use via javascript.
– Tallis