-
<script language="javascript" type="text/JavaScript">
関数 getClientBounds()
{
var clientWidth;
var clientHeight;
if ($.browser.msie)
{
clientWidth = document.body.clientWidth;
clientHeight = document.body.clientHeight;
}
else if ($.browser.safari)
{
clientWidth = window.innerWidth;
clientHeight = window.innerHeight;
}
else if ($.browser.Opera)
{
clientWidth = Math.min(window.innerWidth,
document.body.clientWidth);
clientHeight = Math.min(window.innerHeight,
document.body.clientHeight);
}
それ以外
{
clientWidth = Math.min(window.innerWidth,
document.documentElement.clientWidth);
clientHeight = Math.min(window.innerHeight,
document.documentElement.clientHeight);
}
return { 幅 : clientWidth、高さ : clientHeight };
}
関数resetLiveMessengerPosition()
{
var clientBounds = getClientBounds();
var コンテナ = document.getElementById("liveMessengerContainer");
varscrollLeft = (document.documentElement.scrollLeft ?
document.documentElement.scrollLeft : document.body.scrollLeft);
varscrollTop = (document.documentElement.scrollTop ?
document.documentElement.scrollTop : document.body.scrollTop);
varcontainerLeft=scrollLeft+clientBounds.width -
コンテナー.clientWidth – 5;
var コンテナトップ = スクロールトップ + clientBounds.height -
コンテナー.クライアントの高さ;
$("#liveMessengerContainer").CSS(
{上:containerTop + "px"、左:containerLeft + "px"});
}