Get started with angularjs-scroll-glue CDN
MIT licensed
AngularJS ScrollGlue is a lightweight library that synchronizes AngularJS and JS scrolling, enabling seamless scrolling behavior within AngularJS applications.
Tags:- angular
- module
- scroll
- glue
Stable version
Copied!
How to start using angularjs-scroll-glue CDN
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.7.9/angular.min.js"></script>
<script src="https://cdn.cdnhub.io/angularjs-scroll-glue/2.2.0/scrollglue.min.js"></script>
<link rel="stylesheet" href="styles.css">
<title>Get started with angularjs-scroll-glue CDN - cdnhub.io</title>
</head>
<body ng-app="myApp">
<div ng-controller="MyController">
<div id="content" scroll-glue>
<p ng-repeat="item in items">{{ item }}</p>
</div>
</div>
<script src="script.js"></script>
</body>
</html>
Copied!
Copied!
Copied!