Posts

Ball & Slider

<!DOCTYPE html > <html lang = "en" > <head>     <meta charset = "UTF-8" >     <meta http-equiv = "X-UA-Compatible" content = "IE=edge" >     <meta name = "viewport" content = "width=device-width, initial-scale=1.0" >     <title></title>     <link rel = "stylesheet" href = "style.css" > </head> <body>     <div class = "grid" id = "grid" >         <div></div>         <div></div>         <div></div>         <div></div>         <div></div>         <div></div>         <div></div>         <div></div>         <div></div>         <div></div...

Mouse Events In Java Script

  onclick The event occurs when the user clicks on an element oncontextmenu The event occurs when the user right-clicks on an element to open a context menu ondblclick The event occurs when the user double-clicks on an element onmousedown The event occurs when the user presses a mouse button over an element onmouseenter The event occurs when the pointer is moved onto an element onmouseleave The event occurs when the pointer is moved out of an element onmousemove The event occurs when the pointer is moving while it is over an element onmouseout The event occurs when a user moves the mouse pointer out of an element, or out of one of its children onmouseover The event occurs when the pointer is moved onto an element, or onto one of its children onmouseup The event occurs when a user releases a mouse button over an element