Skip to content

Instantly share code, notes, and snippets.

@bluepnume
Created July 18, 2017 20:40
Show Gist options
  • Save bluepnume/7bcc64c03beb245fdb5ed4823a094749 to your computer and use it in GitHub Desktop.
Save bluepnume/7bcc64c03beb245fdb5ed4823a094749 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<script src="https://www.paypalobjects.com/api/checkout.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/ScrollMagic/2.0.5/ScrollMagic.min.js"></script>
</head>
<body>
<div id="container">
<div id="paypal-button-container"></div>
</div>
<script>
new ScrollMagic.Scene().setPin("#container");
paypal.Button.render({
payment: function(data, actions) {
},
onAuthorize: function(data, actions) {
}
}, '#paypal-button-container');
</script>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment