Silverlight plugin: SISTR

Sistr is a Silverlight font replacement inspired by sIFR. Sistr is a plugin that replace text elements in your websites with Silverlight equivalents using your own fonts. Sistr requires JavaScript and Silverlight v3 or higher.

If your visitor doesn't have javascipt or Silverlight you shouldn't worry, the CSS styles you set will be displayed.

How to use?

Sistr uses jQuery and works with version 1.3 or higher. Download the latest version of jQuery and click here to download the Sistr files. To enable Sistr on your website, follow these simple steps:

In order to be able to use Sistr on your webpage you must reference 2 scripts. One for the jQuery library and one for the Sistr jQuery plug-in. Add this code snippet to your webpage:

<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="jquery.sistr.js"></script>

Sistr will be directed to the right titles or text in your webpage by using a jQuery selector as soon as your page has been loaded. On the result set of that selector you will have to call the .sistr() function provided by the sistr.jquery.js plug-in. Add this code to your HTML page and you're good to go.

$(document).ready(function() {
$("h1").sistr({
	font: "Arial",
	size: 22,
	color: "#FFCC00"
});
});

More information

Check http://www.sistr.it/