Location via proxy:   
[Report a bug]   [Manage cookies]                

Podcast

Hear about FramerJS & Design on the User Defenders podcast: The Little Details Can Make A Big Difference with Jordan Dobson

Jordan Dobson inspires us to never stop learning and be generous in sharing knowledge with others. He encourages us to craft prototypes in order to gain valuable insight early and often. He challenges designers to gain empathy for their developers by learning a bit about code. He also shows us how the little details can make a big difference.

Listen

podcast framerjs userdefenders jordandobson prototyping

APP Framed for Windows

Framed is a minimal web browser for designers and developers prototyping fullscreen experiences on Windows devices with HTML & Javascript. On phones, prototype native app experiences by going fullscreen to remove all distracting browser chrome. On PCs, hide the titlebar to design immersive, full-bleed desktop windows.

Has support for mobile devices, PC, Xbox and Windows Holographic.

Framed App Download by Weston Thayer

fullscreen windows prototype framerjs app chromeless

Module Default Animation Settings & Viewer

This module helps you calibrate animation in your Framer project.

  • Copy motionSlider.coffee into the modules directory of your project
  • Add these 2 lines at the top of your Framer file

    motionModule = require “motionSlider”
    motionModule.motionSlider_function()

    • Long press 3 seconds on the screen. This allows you to calibrate Framer.Defaults.animation in your project.

    Framer Studio Source by JH.Park

    Module InputField Class

    UPDATE: This module has been improved and updated. Use the link below for examples of usage, new properties and an improved event system.

    Updated Framer Studio Source & Module: Simple & Advanced Example

    This module allows you to easily add text & date inputs to your prototypes. You can also easily listen for focus, blur, Input, valid, invalid and match events by using the custom events added to the InputField class.

    Valid input types with keyboard support are: text, email, number, number-only, url, tel, password, search, time, month, date and datetime-local… file will be coming in the next few months.

    You’re also able to set the placeHolder, placeHolderColor and placeHolderFocus values, a default value, maxLength, fontSize, fontWeight, fontFamily, indent, lineHeight, maxLength, match (array), pattern (regex pattern), autoCapitalize, autoComplete, autoCorrect, and autoCapitalize properties.

    Here’s a quick usage example:

    myInput = new InputField
      width:  Screen.width
      height: 132
      color: “black”
      backgroundColor: “#fff”
      placeHolder: “Search…”

    myInput.on Events.Input, (value, layer) ->
      print “INPUT”, value, layer, @isEmpty

    Here’s a more advanced usage example:

    colorInput = new InputField
      name: "colorInput”
      type: “text”
      width:  Screen.width
      height: 132
      x: 0
      y: 0
      color: “black”
      backgroundColor: “#fff”
      indent: 48
      fontSize: 48
      fontWeight: 600
      fontFamily: “Georgia, serif”
      placeHolder: “Enter Hexadecimal Color”
      placeHolderFocus: “#_ _ _ _ _ _”
      placeHolderColor: “silver”
     autoCapitalize: false
     autoComplete: false
     autoCorrect: false
     maxLength: 7
     pattern: “^#?([a-fA-F0-9]{6}|[a-fA-F0-9]{3})$”
     match: [“orange”, “Orange”, “red”, “Red”, “blue”, “Blue”]
     value: “”

    colorInput.on Events.Input, (value, layer) ->
     print “Input”, value, layer, @.isEmpty

    colorInput.on Events.Focus, (value, layer) ->
     print “Focus”, value, layer

    colorInput.on Events.Blur, (value, layer) ->
     print “Blur”, value, layer

    colorInput.on Events.Valid, (value, layer) ->
     print “Valid”, value, layer

    colorInput.on Events.Invalid, (value, layer) ->
     print “Invalid”, value, layer

    colorInput.on Events.Match, (value, layer) ->
     print “Match”, value, layer

    Framer Studio Source: Simple Example (outdated)

    Framer Studio Source: Advanced Example (outdated)

    Module Code by Jordan Dobson

    Seattle FramerJS framerjs prototype form text input

    INBOX Scroll + Swipe + More

    Here’s an example from Framer JS Seattle Meetup 04!

    Jordan Dobson mentored the advanced and intermediate group talking about code structure, using / adding modules, creating classes, drawing with CSS, dealing with varied pixel densities, directionLock, collecting sublayers as properties of a superLayer and using the new custom property on layers.

    The features in this demo include:

    • Swipe left only
    • Blocking right swipe
    • Cell removal from list
    • Click status bar to scroll to top
    • Shy navigation bar
    • Adding a confirm for frameless in case you don’t have it
    • Mousedown cursor state change via cursor module
    • And a few others… see if you can find them.

    Framer Studio Source by Jordan Dobson

    Seattle FramerJS framerjs prototype inbox