Skip to content

RayPS/Framer-CollectionComponent

Repository files navigation

Framer-CollectionComponent

CollectionComponent Framer Module

Usage:

Put CollectionComponent.coffee into the modules folder of your project.

{CollectionComponent} = require 'CollectionComponent'

myCollection = new CollectionComponent
	amount: 24
	columns: 4
	gutter: 0
	cellWidth: Screen.width / 4
	cellHeight: 100
	cell: (cell) ->
		cell.borderColor = "black"
		cell.borderWidth = 1
		cell.borderRadius = 5

[ DEMO ]