Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 734 Bytes

README.md

File metadata and controls

30 lines (20 loc) · 734 Bytes

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 ]