PASTEBIN
| #1 paste tool since 2002
create new paste
tools
api
archive
faq
PASTEBIN
create new paste
trending pastes
sign up
login
my alerts
my settings
my profile
Don't like ads?
PRO users
don't see any ads ;-)
Public Pastes
Untitled
1 sec ago
Untitled
5 sec ago
Untitled
11 sec ago
Untitled
16 sec ago
ser_1368967801150
9 sec ago
Untitled
11 sec ago
Untitled
11 sec ago
startup
Lua | 13 sec ago
New Paste
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <!-- DO NOT REMOVE FOLLOW FOREVER BLOG ROLL v3 MADE BY: http://lostmemento.tumblr.com (lmthemes) --> <!----------------------------------------------- REHOSTING Please if you have a webs.com or somewhere to host scripts PLEASE PLEASE rehost This script: http://almostfamousfame.webs.com/proximity.js And replace it with your rehosted script link here: <script type="text/javascript" src="http://almostfamousfame.webs.com/proximity.js"></script> -----------------------------------------------> <title>YOUR TITLE HERE</title> <link rel="shortcut icon" href="{Favicon}"> <link rel="alternate" type="application/rss+xml" href="{RSS}"> {block:Description}<meta name="description" content="{MetaDescription}"/> {/block:Description} <link rel="shortcut icon" href="{Favicon}" /> <link rel="apple-touch-icon" href="{PortraitURL-128}"/> <link rel="alternate" type="application/rss+xml" href="{RSS}" /> <link href='http://fonts.googleapis.com/css?family=Lekton|Terminal+Dosis+Light|Open+Sans+Condensed:300' rel='stylesheet' type='text/css'> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script> <script type="text/javascript" src="http://almostfamousfame.webs.com/proximity.js"></script> <style type="text/css"> body {background-color: #fdfdfd; font-family: Calibri, Helvetica; margin: 0px;} a {text-decoration: none;} .t_links {width: 830px; margin: auto; font-family: 'Open Sans Condensed'; font-size: 20px; margin-top: 20px;} .t_title {font-size: 24px; background-color: #ededed; color: #fff; padding: 0px 10px;} .t_links a:link, .t_links a:visited, .t_links a:active {color: #a7a7a7;} .fl-container {width: 810px; height: 590px; overflow-y: auto; overflow-x: hidden; margin:auto; border: 10px solid #f8f8f8; background-color: #fdfdfd} .fl-thumbs{width: 800px; margin: 20px auto; position: relative; margin-left: 10px; padding-left: 10px;} .fl-thumbs:before {content: ""; display: block; position: absolute; top: 0px; left: 0px; width: 90%; height: 90%;} .fl-thumbs li{float:left; position: relative; list-style: none;} .fl-thumbs li a, .fl-thumbs li a img{display: block; position: relative;} .fl-thumbs li a img {width:75px; opacity: 0.5;} .fl-thumbs li a div.fl-description{width: 250px; max-width: 250px; overflow: hidden; height: 75px; background-color: #f8f8f8; opacity: 0.95; position: absolute; top: 0px; left: -200px; color: #a4a4a4; display: none; z-index: 1001; text-align: left;} .fl-description h3 {padding: 10px; line-height: 20px; font-family: 'Open Sans Condensed'; font-size: 22px; margin: 0px; font-weight: normal; background-color: #fff; border-bottom: 1px solid rgba(241,241,241,0.8);} .fl-description p {padding: 10px 0px; margin: 0px 10px; margin-bottom: 10px; font-size: 11px; font-style: italic;} </style> </head> <body> <div class="t_links"><table cellspacing="0" cellpadding="0"><tr> <td class="t_title"><img src="{PortraitURL-16}"> TITLE HERE FOLLOW FOREVER ETC.</td> <td style="padding: 0px 50px;"><a href="/">❰ BACK</a> <a href="http://www.tumblr.com/dashboard" style="margin-left: 10px;">DASHBOARD ❱</a></td> <!--- DO NOT REMOVE CREDIT ---> <Td style="font-size: 15px"><a href="http://lmthemes.tumblr.com">© LMTHEMES</a></td></tr></table></div> <!--- DO NOT REMOVE CREDIT ---> <div class="fl-container"><ul id="fl-thumbs" class="fl-thumbs"> {block:Following} {block:Followed}<li><a href="{FollowedURL}"><img src="{FollowedPortraitURL-96}"> <div class="fl-description"><h3>{FollowedName}</h3><p>{FollowedTitle}</p></div></a></li>{/block:Followed}{/block:Following} </ul> </div> <!--- DO NOT EDIT ANYTHING BELOW EXCEPT FOR WHAT IS SAID IN STEP 7A ---> <script type="text/javascript"> $(function() { var Photo = (function() { // list of thumbs var $list = $('#fl-thumbs'), // list's width and offset left. // this will be used to know the position of the description container listW = $list.width(), listL = $list.offset().left, // the images $elems = $list.find('img'), // the description containers $descrp = $list.find('div.fl-description'), // maxScale : maximum scale value the image will have // minOpacity / maxOpacity : minimum (set in the CSS) and maximum values for the image's opacity settings = { maxScale : 1.3, maxOpacity : 0.9, minOpacity : Number( $elems.css('opacity') ) }, init = function() { // minScale will be set in the CSS settings.minScale = _getScaleVal() || 1; // preload the images (thumbs) _loadImages( function() { _calcDescrp(); _initEvents(); }); }, // Get Value of CSS Scale through JavaScript: // http://css-tricks.com/get-value-of-css-rotation-through-javascript/ _getScaleVal= function() { var st = window.getComputedStyle($elems.get(0), null), tr = st.getPropertyValue("-webkit-transform") || st.getPropertyValue("-moz-transform") || st.getPropertyValue("-ms-transform") || st.getPropertyValue("-o-transform") || st.getPropertyValue("transform") || "fail..."; if( tr !== 'none' ) { var values = tr.split('(')[1].split(')')[0].split(','), a = values[0], b = values[1], c = values[2], d = values[3]; return Math.sqrt( a * a + b * b ); } }, // calculates the style values for the description containers, // based on the settings variable _calcDescrp = function() { $descrp.each( function(i) { var $el = $(this), $img = $el.prev(), img_w = $img.width(), img_h = $img.height(), img_n_w = settings.maxScale * img_w, img_n_h = settings.maxScale * img_h, space_t = ( img_n_h - img_h ) / 2, space_l = ( img_n_w - img_w ) / 2; $el.data( 'space_l', space_l ).css({ height : settings.maxScale * $el.height(), top : -space_t, left : img_n_w - space_l }); }); }, _initEvents = function() { $elems.on('proximity.Photo', { max: 80, throttle: 10, fireOutOfBounds : true }, function(event, proximity, distance) { var $el = $(this), $li = $el.closest('li'), $desc = $el.next(), scaleVal = proximity * ( settings.maxScale - settings.minScale ) + settings.minScale, scaleExp = 'scale(' + scaleVal + ')'; // change the z-index of the element once it reaches the maximum scale value // also, show the description container if( scaleVal === settings.maxScale ) { $li.css( 'z-index', 1000 ); if( $desc.offset().left + $desc.width() > listL + listW ) { $desc.css( 'left', -$desc.width() - $desc.data( 'space_l' ) ); } $desc.fadeIn( 800 ); } else { $li.css( 'z-index', 1 ); $desc.stop(true,true).hide(); } $el.css({ '-webkit-transform' : scaleExp, '-moz-transform' : scaleExp, '-o-transform' : scaleExp, '-ms-transform' : scaleExp, 'transform' : scaleExp, 'opacity' : ( proximity * ( settings.maxOpacity - settings.minOpacity ) + settings.minOpacity ) }); }); }, _loadImages = function( callback ) { var loaded = 0, total = $elems.length; $elems.each( function(i) { var $el = $(this); $('<img/>').load( function() { ++loaded; if( loaded === total ) callback.call(); }).attr( 'src', $el.attr('src') ); }); }; return { init : init }; })(); Photo.init(); }); </script> </body></html>
Optional Paste Settings
Syntax Highlighting:
None
Bash
C
C#
C++
CSS
HTML
HTML 5
Java
JavaScript
Lua
None
Objective C
Perl
PHP
Python
Rails
-------------
4CS
6502 ACME Cross Assembler
6502 Kick Assembler
6502 TASM/64TASS
ABAP
ActionScript
ActionScript 3
Ada
ALGOL 68
Apache Log
AppleScript
APT Sources
ARM
ASM (NASM)
ASP
Asymptote
autoconf
Autohotkey
AutoIt
Avisynth
Awk
BASCOM AVR
Bash
Basic4GL
BibTeX
Blitz Basic
BNF
BOO
BrainFuck
C
C for Macs
C Intermediate Language
C#
C++
C++ (with QT extensions)
C: Loadrunner
CAD DCL
CAD Lisp
CFDG
ChaiScript
Clojure
Clone C
Clone C++
CMake
COBOL
CoffeeScript
ColdFusion
CSS
Cuesheet
D
DCL
DCPU-16
DCS
Delphi
Delphi Prism (Oxygene)
Diff
DIV
DOS
DOT
E
ECMAScript
Eiffel
Email
EPC
Erlang
F#
Falcon
FO Language
Formula One
Fortran
FreeBasic
FreeSWITCH
GAMBAS
Game Maker
GDB
Genero
Genie
GetText
Go
Groovy
GwBasic
Haskell
Haxe
HicEst
HQ9 Plus
HTML
HTML 5
Icon
IDL
INI file
Inno Script
INTERCAL
IO
J
Java
Java 5
JavaScript
jQuery
KiXtart
Latex
LDIF
Liberty BASIC
Linden Scripting
Lisp
LLVM
Loco Basic
Logtalk
LOL Code
Lotus Formulas
Lotus Script
LScript
Lua
M68000 Assembler
MagikSF
Make
MapBasic
MatLab
mIRC
MIX Assembler
Modula 2
Modula 3
Motorola 68000 HiSoft Dev
MPASM
MXML
MySQL
Nagios
newLISP
None
NullSoft Installer
Oberon 2
Objeck Programming Langua
Objective C
OCalm Brief
OCaml
Octave
OpenBSD PACKET FILTER
OpenGL Shading
Openoffice BASIC
Oracle 11
Oracle 8
Oz
ParaSail
PARI/GP
Pascal
PAWN
PCRE
Per
Perl
Perl 6
PHP
PHP Brief
Pic 16
Pike
Pixel Bender
PL/SQL
PostgreSQL
POV-Ray
Power Shell
PowerBuilder
ProFTPd
Progress
Prolog
Properties
ProvideX
PureBasic
PyCon
Python
Python for S60
q/kdb+
QBasic
R
Rails
REBOL
REG
Rexx
Robots
RPM Spec
Ruby
Ruby Gnuplot
SAS
Scala
Scheme
Scilab
SdlBasic
Smalltalk
Smarty
SPARK
SPARQL
SQL
StoneScript
SystemVerilog
T-SQL
TCL
Tera Term
thinBasic
TypoScript
Unicon
UnrealScript
UPC
Urbi
Vala
VB.NET
Vedit
VeriLog
VHDL
VIM
Visual Pro Log
VisualBasic
VisualFoxPro
WhiteSpace
WHOIS
Winbatch
XBasic
XML
Xorg Config
XPP
YAML
Z80 Assembler
ZXBasic
Paste Expiration:
Never
10 Minutes
1 Hour
1 Day
1 Week
2 Weeks
1 Month
Paste Exposure:
Public
Unlisted
Private (members only)
Paste Name / Title:
Hello
Guest
Sign Up
or
Login
You are currently not logged in, this means you can not edit or delete anything you paste.
Sign Up
or
Login