· Put rainbowbox.js in your js folder.
· Put this line <script src="/folder/rainbowbox.js" async></script>
rainbowbox(ELEMENT, { OPTIONS });
<div id="rainbowbox" style="width: 120px; height: 120px"></div>
<script>
var final_points = [
[175, 77, 172],
[50, 125, 189],
[60, 146, 82],
[237, 183, 18]
];
rainbowbox($("#rainbowbox"), {
to: final_points,
from: [0,0,0],
animated: true,
velocity: 15
});
</script>