Skip to content

Instantly share code, notes, and snippets.

Playing with CSS Filters.

Using contrast() to posterise the image, in turn rounding the overlapped blurred regions of the two circles to a block colour.

A Pen by Sam Jarvis on CodePen.

License.

anonymous
anonymous / Pull-Menu---Menu-Interaction-Concept.markdown
Created December 23, 2014 18:58
Pull Menu - Menu Interaction Concept
@mstevenson
mstevenson / Fps.cs
Last active September 8, 2025 13:44
An accurate FPS counter for Unity. Works in builds.
using UnityEngine;
using System.Collections;
public class Fps : MonoBehaviour
{
private float count;
private IEnumerator Start()
{
GUI.depth = 2;