creativetimofficial / material-kit

Free and Open Source UI Kit for Bootstrap 5, React, Vue.js, React Native and Sketch based on Google's Material Design
https://www.creative-tim.com/product/material-kit?ref=mk-creativetimofficial-github
MIT License
5.91k stars 1.37k forks source link

Input fields do not show any animations #86

Closed rykr closed 7 years ago

rykr commented 7 years ago

Thinking I have to have something wrong here. What should I check to see if I'm loading the right things? Here's my HTML for the fields.

                <div class="col-sm-4">
                    <div class="form-group label-floating">
                        <label class="control-label">First Name</label>
                        <input type="FirstName" class="form-control">
                    </div>
                </div>                    

The field shows fine but clicking on it gives no transitions or animations.

rykr commented 7 years ago

Doh. Sorry, fixed the obvious type "typo". Here is the new code (that still doesnt' work)

        <form id="member_form">
            <div class="row">
                <div class="col-sm-4">
                    <div class="form-group label-floating">
                        <label class="control-label">First Name</label>
                        <input type="text" id="FirstName" name="FirstName" class="form-control">
                    </div>
                </div>                    
                <div class="col-sm-4">
                    <div class="form-group label-floating">
                        <label class="control-label">Last Name</label>
                        <input type="text" id="LastName" name="LastName" class="form-control">
                    </div>
                </div>                    
            </div>
        </form>
rykr commented 7 years ago

gah. Nevermind. User error. Sorry for the noise.