enabled

enabled - Specifies if animation options are enabled.
Its value is true by default.


<div id="timeline" />

<script type="text/javascript">
    $(function () {
        $('#timeline').shieldTimeline({
              animation: {
                  enabled: true,
                  expandDuration: 400
              },
              dataSource: {
                    data: [
                        {
                            title: "David F.",
                            text: "Hey! Sure, I will message ...",
                            iconCls: "fa fa-facebook",
                            collapsed: true
                        },
                        {
                            title: "Followed",
                            text: "By J.R. Simpson",
                            iconCls: "fa fa-twitter"
                        }
                    ]
                }
          });
    });
</script>