A demo showing multiple split types and effects. More codepen demos here: http://codepen.io/collection/KiEhr/
Forked from GreenSock's Pen SplitText: Multiple Split Types.
A Pen by Secret Sam on CodePen.
A demo showing multiple split types and effects. More codepen demos here: http://codepen.io/collection/KiEhr/
Forked from GreenSock's Pen SplitText: Multiple Split Types.
A Pen by Secret Sam on CodePen.
github repo for this pen: https://github.com/legomushroom/velocity
A Pen by LegoMushroom on CodePen.
Forked from Chris Steurer's Pen Product Hover Display Cards.
A Pen by A Non Ymous on CodePen.
body { | |
font: 16px/1 sans-serif; | |
margin: 0; | |
background-color: #fefefe; | |
} | |
nav a { | |
font: 0/0 Tahoma; | |
text-align: center; | |
text-decoration: none; |
Part of the SplitText Collection
Forked from GreenSock's Pen SplitText: Words dancing in 3D.
A Pen by valery sntx on CodePen.
public static string TemplifyWith<T>(this string templatedString, T obj, string tokenFormat = "[{0}]") | |
{ | |
var result = templatedString; | |
var type = typeof(T); | |
foreach (var propertyInfo in type.GetProperties()) | |
{ | |
var token = string.Format(tokenFormat, propertyInfo.Name); |
private const string SCRIPTBLOCK_BUILDER = "ScriptBlockBuilder"; | |
public static MvcHtmlString ScriptBlock(this WebViewPage webPage, | |
Func<dynamic, HelperResult> template) | |
{ | |
if (!webPage.IsAjax) | |
{ | |
var scriptBuilder = webPage.Context.Items[SCRIPTBLOCK_BUILDER] | |
as StringBuilder ?? new StringBuilder(); |
.box | |
.btn |
powershell -Command "Set-ExecutionPolicy unrestricted" | |
powershell -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin | |
choco install sublime | |
choco install nodejs.commandline | |
choco install npm | |
choco install yeoman | |
powershell -Command "New-Item -path $profile file -force" | |
powershell -Command "write "Set-Alias subl 'C:\Program Files\Sublime Text 2\sublime_text.exe'" " >$profile | |
@powershell -Command "subl" |
<script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.1.1.js"></script> | |
<script> | |
(function Templify(undefined) { | |
var models = {}; | |
function replace(template, pattern, value){ | |
var expression = new RegExp('\\['+pattern+'\\]'); |