Creates an instance of a Scrollview.
Example
// Create the app
const app = new PIXIApp({
view: canvas,
width: 600,
height: 400
}).setup().run()
// Create the Scrollview
app.loader
.add('elephant', './assets/elephant-1.jpg')
.load((loader, resources) => {
const sprite = new PIXI.Sprite(resources.elephant.texture)
const scrollview = new Scrollview({boxWidth: 400, boxHeight: 300})
scrollview.content.addChild(sprite)
app.scene.addChild(scrollview)
Extends
- PIXI.extras.Scrollbox
Methods
-
layout ()Scrollview
-
Should be called to refresh the layout of the Scrollview. Can be used after resizing.
Returns:
Type Description Scrollview A reference to the Scrollview for chaining.