wersja skryptu MyBB: 1.6.5
adres forum: Dymara.pl
na czym polega problem (screen, opis, komunikaty):
Chchciałbym dodać taką wtyczke do facebook'a jaka jest np. na amxx.pl.
Po najechaniu na obrazek wysuwa się Like Box. Znalazłem taki kod:
Ale wtedy na dole pokazuje się scroll, bo widać cały Like Box chowa się na niewidocznej części ekranu.
adres forum: Dymara.pl
na czym polega problem (screen, opis, komunikaty):
Chchciałbym dodać taką wtyczke do facebook'a jaka jest np. na amxx.pl.
Po najechaniu na obrazek wysuwa się Like Box. Znalazłem taki kod:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title></title>
<meta http-equiv="content-type" content="text/html;charset=utf-8;" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script>
<script type="text/javascript">
var moved = false;
function move() {
if(!moved) {
$('#facebook').animate({
right: '0px'
}, 1000);
moved = true;
}
else {
$('#facebook').animate({
right: '-350px'
}, 1000);
moved = false;
}
}
</script>
<style type="text/css">
#facebook {
width: 400px;
position: absolute;
top: 100px;
right: -350px;
}
#facebook-button {
width: 100px;
float: left;
background: blue;;
}
#facebook-content {
width: 300px;
float: right;
background: blue;
}
</style>
</head>
<body>
<div id="facebook">
<div id="facebook-button" onclick="move();">FB</div>
<div id="facebook-content">
I like to move it, move it! I like to: MOVE IT!
</div>
</div>
</body>
</html>