Redimensiones

sergio_fuste

Buenos dias,

Estaba buscando webs y he llegado a esto:

http://es.samsungmobile.com/mobile_phone/sgh-d500/uis/index.html

Joder, pero como cojones se hace esto!!!! Lo redimensionan como le sale de las pelotas, para arriba, para abajo, ahora pequeño y luego crece.... ¿Pero que es esto?!!!!!!

¿Alguien capaz de explicarmelo?

Gracias y un saludo ;)

guiye

<script LANGUAGE="JavaScript">

var width = 496;
var height = 396;
var winxpos = (window.screen.availWidth - width)/2;
var winypos = (window.screen.availHeight - height)/2;
window.resizeTo(width,height);
window.moveTo(winxpos,winypos);

function launch_D500()
{
var winW = 800;
var winH = 580;
var l = (screen.availWidth - winW)/2;
var t = (screen.availHeight - winH)/2;
// var winSet = 'width=' + winW + ',height=' + winH + ',left=' + l + ',top=' + t + ',scrollbars=no,menubar=no,status=no,location=no,toolbar=no';
var winSet = 'width=' + winW + ',height=' + winH + ',left=' + l + ',top=' + t + ',scrollbars=no';
var win = window.open("main.html","D500",winSet);
}
</script>

RedHat

si hola, pero q coño kieres hacer? q tiene de especial esa web?

minipelos

he estado rebuscando por dentro (fuente del html y descompilar flash y tal :P)

he sacado alguna cosilla que a lo mejor te interesa

Del HTML:

<script LANGUAGE="JavaScript">

var isInternetExplorer = navigator.appName.indexOf("Microsoft") != -1;

function d500Flash_DoFSCommand(command, args)
{
var flashObj = isInternetExplorer ? document.all.d500Flash : document.d500Flash;
if(command == "resizeWin")
{
args_array = args.split(",");
resizeWin(Number(args_array[0]), Number(args_array[1]));
}
}

if (navigator.appName && navigator.appName.indexOf("Microsoft") != -1 && navigator.userAgent.indexOf("Windows") != -1 && navigator.userAgent.indexOf("Windows 3.1") == -1) {
document.write('<script language=\"VBScript\">\n');
document.write('On Error Resume Next\n');
document.write('Sub d500Flash_FSCommand(ByVal command, ByVal args)\n');
document.write(' Call d500Flash_DoFSCommand(command, args)\n');
document.write('End Sub\n');
document.write('</script>\n');
}

</script>

en el flash me he encontrado con:
resizeWindow(799, 580, 6, false);

es así lo mas destacable que he encontrado.

Usuarios habituales

  • minipelos
  • RedHat
  • guiye
  • sergio_fuste