⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 index.htm

📁 这是一个XILINX公司的product_table
💻 HTM
📖 第 1 页 / 共 5 页
字号:


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
<TITLE>Xilinx : Products and Services : Technical Product Demos</TITLE>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<META NAME="GENERATOR" CONTENT="Mozilla/4.03 [en] (WinNT; I) [Netscape]">
<meta name="History" content="">
<META NAME="DESCRIPTION" CONTENT="Xilinx producst & services, Virtex Series">
<META NAME="KEYWORDS" CONTENT="xilinx, VIRTEX, design, Embedded Processing, DSP, Virtex-4, Virtex-II, Memory Interface, EasyPath, DDR2, SDRAM, QDR II, SRAM, ChipScope Pro, circuit analyzer, Advanced Memory Development System, FPGA, logic cells, ASMBL, architecture, copper metallization, 300mm, wafer technologies, system verification, DDR, evaluation board, EasyPath, Adrian Cosoroaba, Stephen Smith, Frank Toth">

<link rel="stylesheet" href="css/main_eng.css" type="text/css">
<link rel="stylesheet" href="css/header_footer_demos.css" type="text/css">

<style>
a.subnav {font-size:11px; color:#000000; text-decoration:none;}
a.subnav:visited {font-size:11px; color:#000000; text-decoration:none;}
a.subnav:hover {font-size:11px; color:#0000EE; text-decoration:underline;}
</style>

<link rel="stylesheet" href="http://www.xilinx.com/css/universal.css" type="text/css">
<link rel="stylesheet" href="http://www.xilinx.com/css/products_services.css" type="text/css">
<link rel="stylesheet" href="http://www.xilinx.com/css/contextual_nav.css" type="text/css">
<link rel="stylesheet" href="http://www.xilinx.com/css/tertiary_nav.css" type="text/css">
<link rel="stylesheet" href="http://www.xilinx.com/css/print.css" type="text/css" media="print">

<script language=JavaScript src="register.js" type=text/javascript></script>

<script language="JavaScript">
<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function MM_findObj(n, d) { //v3.0
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document); return x;
}

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}
//-->
</script>


<!-- DOD Scripts and code-->
<script src="/shared_components/javascript/launchPoint.js"></script>
<script src="/shared_components/javascript/cookie.js"></script>
<script src="/shared_components/javascript/exists.js"></script>
<script language=JavaScript>

var promotion_id = 1249;
var playerProps = ""; 
var chooseProps = "";
var root = ""


/*
 call launch with one, three or four parameters:
 Case 1: sessID
 	call with sessID only to launch player with bandwidth selector
 Case 2:
 	call with sessID,rate,player,[preview || full]  to launch a specific stream
 
 The streamInfoVars.asp file has variables to further customize available plugins and bandwidths.
 
 Note: although the fourth parameter refers explicitly to preview or full presentations, this is arbitrary, and 
 could be used to customize playlist filenames in any way.
 
*/
var playerPrefCookie = new Cookie(document, "playerPrefs", 0, "/");
playerPrefCookie.load();
var selectedRate = (exists(playerPrefCookie.rate)) ? playerPrefCookie.rate : false;
var detectedPlayer = (exists(playerPrefCookie.player)) ? playerPrefCookie.player : false;

// override these in the page to change defaults.
var playerWidth  = 640;
var playerHeight = 482;

function launch2(sessID, sessType, rate, player )
{

	var winName 	= "playerWin";
	var win;
	var w = screen.availWidth;
	var h = screen.availHeight;
	var chooseWidth  = 300;
	var chooseHeight = 150;

	if (typeof promotion_id == "undefined") alert("undefined promotion id for point player launch!")
	
	if (arguments.length < 4)
	{
		var leftPos = (w - chooseWidth) / 2;
		var topPos  = (h - chooseHeight) / 2;
		var ref 	= "/shared_components/asp/player/detect.asp?sessID=" + sessID + "&sessType=" + sessType + "&root=" + root
		ref += "&imagesPath="
		ref += "&promotion_id=" + promotion_id
		//alert(ref)
		win = window.open(ref, "detect", 'resizable=yes,' + chooseProps + ',top=' + topPos + ',left=' + leftPos);
		win.focus()
		
	} else {
		var leftPos = (w - playerWidth) / 2;
		var topPos  = (h - playerHeight) / 2;
		var ref = root + "index.asp?sessID=" + sessID;
		ref += "&rate=" + rate;
		ref += "&player=" + player;
		ref += "&sessType=" +sessType;
		if (typeof promo_id != "undefined")
		{
			ref += "&promotion_id=" + promo_id
		} else {
			ref += "&promotion_id=" + promotion_id
		}
//		alert(ref)
		if (typeof playerProps == "undefined")
		{
			win = window.open(ref, winName, 'width=' + playerWidth + ',height=' + playerHeight + ',top=' + topPos + ',left=' + leftPos);
		} else {
			win = window.open(ref, winName, playerProps + ',top=' + topPos + ',left=' + leftPos)
		}
		win.focus()
	} 
	return win;
}

function launchPoint(sessID, sessType, rate, player )
{
	if (arguments.length < 4)
	{
		//alert("rate in launch "  +selectedRate)
		//alert("player " + detectedPlayer)
		if (selectedRate && detectedPlayer)
		{
			launch2(sessID, sessType, selectedRate, detectedPlayer)
		} else {
			
			// if not passed explicit args, look for them in the cookie....
			if (typeof playerPrefCookie != "undefined")
			{
				
				if (playerPrefCookie.rate != "" && typeof playerPrefCookie.rate != "undefined" && playerPrefCookie.player != "none")
				{
					launch2(sessID, sessType, playerPrefCookie.rate, playerPrefCookie.player)
				} else {
					launch2(sessID, sessType)
				}
			} else {
				launch2(sessID, sessType)
			}
		}
	} else {
		launch2(sessID, sessType, rate, player)
	}
	return false;
}




// Note: this function is dependant on the Cookie class, defined elsewhere in this directory.
function launchDetect(sessID, companyID, promoID)
{
	/*
	if (playerPrefCookie.rate != "")
	{
		var leftPos = (screen.availWidth - ) / 2;
		var topPos  = (screen.availHeight - ) / 2;
	 	window.open("?&rate=" + rate + "&player=" + which, "playerWin", 'width=,height=,top=' + topPos + ',left=' + leftPos);
	
	} else 
	*/
	var pid = ''
	if ( (exists(playerPrefCookie.rate) && playerPrefCookie.rate < 150) || (exists(selectedRate) && selectedRate < 150))
	{
		var detectWidth = 300;
		var detectHeight = 150
		var leftPos = Math.round((screen.availWidth - detectWidth) / 2);
		var topPos  = Math.round((screen.availHeight - detectHeight) / 2);
		var ref = "/shared_components/asp/player/detect.asp?playerType=training&sessID=" + sessID
		if (arguments.length > 1) ref += "&companyID=" + companyID
		if (pid != '')
		{
			ref += "&promotion_id=" + pid;
		} else {
			ref += "&promotion_id=" + promotion_id;
		}
		//alert(ref)
		var win = window.open(ref, "detect", 'width=' + detectWidth + ',height=' + detectHeight + ',top=' + topPos + ',left=' + leftPos);
		win.focus()
	} else {
		launch(sessID, companyID)
	}
	return false;
}

function launchWarning(sessID, companyID)
{
	var detectWidth = 400;
	var detectHeight = 225
	var leftPos = Math.round((screen.availWidth - detectWidth) / 2);
	var topPos  = Math.round((screen.availHeight - detectHeight) / 2);
	var ref = "/shared_components/asp/player/warning.asp?warn=training&sessID=" + sessID;
	if (arguments.length > 1) ref += "&companyID=" + companyID;
	var win = window.open(ref, "warning", 'width=' + detectWidth + ',height=' + detectHeight + ',top=' + topPos + ',left=' + leftPos);
	win.focus()
	return false;
}



function launch(sessID, companyID)
{

	var playerWidth  = 1000;
	var playerHeight = 709;


	var win;
	var ref = "/TrainingApp/player/index.asp?sessID=" + sessID;
	//if (arguments.length > 1) ref += "&companyID=" + companyID;
	
	if (typeof promotion_id == "undefined")
	{
		alert("Page missing default promo id!")
		return false
	} else {
		ref += "&promotion_id=" + promotion_id
	}
	

	try
	{

		win = window.open(ref, "player", 'width=' + playerWidth + ',height=' + playerHeight + ',top=1,left=1');
		win.focus()

	} catch(e) {
		document.location = ref;
		return true;
	}

	return false;
}


var demoWin;
function launchWithStartTime(sessID, promoID, startTime)
{

	var playerWidth  = 1000;
	var playerHeight = 709;

	
	var ref = "/TrainingApp/player/index.asp?sessID=" + sessID;
	ref += "&cid="
	ref += "&promotion_id=" + promoID
	ref += "&startTime=" + startTime
	
//alert(ref)
	if (typeof demoWin != "undefined") demoWin.close();
	
	
	try
	{
	
		
		var hWnd = window.open(ref, "demoWin", 'width=' + playerWidth + ',height=' + playerHeight + ',top=1,left=1');
		hWnd.focus()
	

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -