Skip to content

Instantly share code, notes, and snippets.

@vencil
vencil / TabMoving.js
Last active May 7, 2018 05:47
Excel-like tab moving
var longPressAct;
function moveElements(container, direction) {
var childElements = container.children,
maxScrollLeft = container.scrollWidth - container.clientWidth,
currentScrollLeft = container.scrollLeft,
moveRight = direction === 'R';
//boarder line check
if (moveRight && currentScrollLeft === maxScrollLeft) return;
else if (!moveRight && currentScrollLeft === 0) return;
@vencil
vencil / EventsCalendar.css
Last active April 26, 2017 04:02
A calendar component that can operates custom actions on your own date events
#EventCalendarToolbar {
width: 94%;
margin: 10px auto;
}
.EventCalendar_ToolGroup {
display: inline;
position: relative;
font-size: 0;
white-space: nowrap;
@vencil
vencil / SignatureView.java
Last active March 27, 2018 07:11
A custom Android View to capture a user's signature
/**
* Copyright (C) 2016 by Vencil(vencsvencil@gmail.com)
* Base canvas action is written by Matthew Silber (https://github.com/mattsilber/sigcap), Apache 2.0 licensed.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions: