Tag Archive for replacement

sIFR 2.0 (Scalable Inman Flash Replacement)

*** HTML | Head ***
<script type="text/javascript" language="javascript" src="js/sifr.js"></script>

*** HTML | Body ***
<h2>Nombre de la sección / Section name</h2>
<h3>Nombre de la subsección / Subsection name</h3>

*** HTML | Antes de cerrar Body / Before closing Body ***
<script type="text/javascript">
//<![CDATA[
if(typeof sIFR == "function"){
// This is the preferred "named argument" syntax
sIFR.replaceElement(named({sSelector:"body h2", sFlashSrc:"titulosSeccion.swf", sColor:"#9c2828", sLinkColor:"#000000", sBgColor:"#FFFFFF", sHoverColor:"#CCCCCC", sWmode:"transparent"}));
sIFR.replaceElement(named({sSelector:"body h3", sFlashSrc:"titulosSeccion.swf", sColor:"#060000", sLinkColor:"#000000", sBgColor:"#FFFFFF", sHoverColor:"#CCCCCC", sWmode:"transparent"}));
}
//]]>
</script>

source

Image Replacement (No Extra Span)

#ex1 {
padding-top: 133px;/*Size of the image*/
width: 243px;
background: url(ex1.gif) no-repeat;/*The image*/
overflow: hidden;/*Hide the text*/
height: 133px;
voice-family: ""}"";/* WIN IE5 hack */
voice-family: inherit;
height: 0;
}

source

Methode

The XHTML-Code:
<h1>Muster</h1>

The CSS-Code:
h1 {
background: url(muster.gif);
height: 25px;
text-indent: -999em;
width: 250px;
}

source

Replace Words

<script type="text/javascript">
//
// © EasterEgg, <a href="http://www.xanga.com/easteregg" >http://www.xanga.com/easteregg</a>
//
// For use at Xanga only.
//
// This script replaces any given word or text fragment with
// whatever you want: new words and fragments, or even HTML!
//
// Actually it's pretty simple: add the words or fragments you
// wish to replace to the array "oldWords" (each word placed
// between double quotation marks, and separated by colons as you
// can see below) and add their replacements to the array "newWords",
// at the same position as the original words in "oldWords".
// The example is pretty self-explaining.
//
// The script is case sensitive, meaning that if you add "something"
// to "oldWords" array it will not recognize "SOMETHING", or "SoMetHInG".
//
// You can adjust the existing arrays in this code as you see fit,
// as long as both arrays keep the same size (same amount of words
// in both arrays), otherwise a script error will occur.
//
// Copy this entire code and paste in the webstats box at your
// Look and Feel page.
//
// You're free to use this script as long as this comment remains intact,
// and as long you won't use it to cripple the comments of your visitors;
// after all, no one likes his/her words getting twisted...
//
function replaceWords()
{
// ***add the words or fragments you wish to replace below
var oldWords = new Array(
"Subscriptions",
"Publish Comments",
"add eProps",
"eprop",
"eProps",
"add comments",
"comment",
"comments",
"email it",
"view entire profile",
"sign my guestbook",
"My Blogrings",
"Posting Calendar",
"Get Involved!",
"sign out",
"Name:",
"Birthday:",
"Gender:",
"State:",
"Country:",
"Interests:",
"Expertise:",
"Website",
"Email",
"Member since:");

// *** add the replacing words or fragments below
var newWords = new Array(
"Subscriptions",
"Publish Comments",
"add eProps",
"eprop",
"eProps",
"add comments",
"comment",
"comments",
"email it",
"view entire profile",
"sign my guestbook",
"My Blogrings",
"Posting Calendar",
"Get Involved!",
"sign out",
"Name:",
"Birthday:",
"Gender:",
"State:",
"Country:",
"Interests:",
"Expertise:",
"Website",
"Email",
"Member since:");

allTableData = document.getElementsByTagName('td');
allTableHeaders = document.getElementsByTagName('th');

var collections = new Array(allTableData,allTableHeaders);

for (var k = 0; k < collections.length; ++k )
{
for (var i = 0; i < collections[k].length; ++i )
{
if (collections[k][i].innerHTML.indexOf('TABLE') == -1)
{
for ( var n = 0; n < oldWords.length; ++n )
{
var indx = collections[k][i].innerHTML.indexOf(oldWords[n])
while (indx != -1)
{
var replacement = '';
indx = collections[k][i].innerHTML.indexOf(oldWords[n]);
replacement = collections[k][i].innerHTML.replace(oldWords[n], newWords[n]);
collections[k][i].innerHTML = replacement;
break;
}
}
}
}
}
}
replaceWords();
</script>

source

Matlab – showBitPlanes

% Ritorna i Bit Plabes dell'immagine a toni di grigio

function showBitPlanes(img)

imgGray = double( rgb2gray(img) );
titleString = 'bit planes ';

% MSB ... LSB
k = 128;

for b=1:8

subplot(2, 4, b);
imshow( (bitand(imgGray, k) / k) * 255 ); % Fa un and dei bit
title([titleString int2str(b-1)]);
k = k/2; % Shifta di 2 i bit

end;

return;

source

Sustitución de H1 por logo (con rollover) / H1 logo image replacement (with rollover)

***** CSS *****
#logotipo {width:150px; height:60px; background:url('../images/logotipo.png') no-repeat}
#logotipo h1 a {margin:0; padding:0; width:150px; height:60px; display:block; text-decoration:none; background:url('../images/logotipo.png') 0 0 no-repeat}
#logotipo h1 a:hover {background-position:0 -60px}
#logotipo h1 a span {position:relative; z-index:-1}

***** HTML *****
<div id="logotipo"><h1><a href="index.html" accesskey="1" tabindex="1"><span>Nombre de la web</span></a></h1></div>

source