I'm having trouble animating this item using PHP and CSS and Javascript (with jQuery). I want a div that slides out from the left side of the screen when its tab bar is hovered over. I have three divs: the container, the contents, and the tab.
Here's the Javascript and HTML:
<div id="LeftSidebar">
<div id="LeftSidebarTab" class="">
Left sidebar tab
</div>
<div id="LeftSidebarContents" class="">
Left sidebar contents
</div>
<script type="text/javascript">
$("#LeftSidebar").mouseenter(function()
{
$("#LeftSidebar").animate(
{
left: 0px
});
});
$("#LeftSidebar").mouseleave(function()
{
$("#LeftSidebar").animate(
{
left: -100px
});
});
</script>
</div>
Here's the CSS:
#LeftSidebar
{
position: absolute;
display: block;
z-index: 12;
top: 220px;
left: 0px;
background-color: green;
height: 500px;
}
#LeftSidebarTab
{
float: right;
background-color: red;
width: 20px;
height: 100%;
}
#LeftSidebarContents
{
background-color: blue;
width: 100px;
height: 100%;
}
I'm new to Javascript, HTML, and et al.
The code isn't doing what I expect it to do. I expect it to, when hovered over, gradually move the 'left' CSS property to 0px, and when the mouse moves off of the contents, move the 'left' CSS property to -100px.
When I hover over it, I see no visible change to the div. I can't even tell if the 'mouseenter()' or 'mouseleave()' functions are even being triggered.
質問: 1) 関数がトリガーされているかどうかを確認するにはどうすればよいですか? Javascript を使用してテキストなどを出力できますか? たぶん、デバッグ用のダイアログ ボックスをポップアップしますか?
2) LeftSidebarContents と LeftSidebarTab が LeftSidebar のすべてのピクセルを完全にカバーしている場合でも、「LeftSidebar」に対して mouseenter/mouseleave がトリガーされますか?
3) 上記のコードで、予期したとおりに動作しない原因となっている明らかな間違いを犯していませんか?