Julian Hollmann
Julian Hollmann

Reputation: 2912

"Sublime Text 2" like scrolling with javascript / jQuery

i'm trying to implement a Sublime 2 like scrolling bar with code preview in javascript / jquery.

enter image description here

Are there any plugins or code snippets out there which are trying to achieve the same?

Upvotes: 6

Views: 1977

Answers (2)

demux
demux

Reputation: 4654

I created a new project to do exactly this. It copies the content into an iframe and scales it down using css. So no canvas, no CORS issues and dimensions are correct.
https://github.com/demux/sublime-scroll/

Upvotes: 9

Misha Reyzlin
Misha Reyzlin

Reputation: 13916

You can use this jQuery plugin: http://larsjung.de/fracs/ and there is also a demo (exactly what you are looking for: http://larsjung.de/fracs/demo).

Upvotes: 12

Related Questions