Case 3- style operation to hide and display a two-dimensional code

<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title></title>
    <style>
        .nodeSmall {
            width: 50px;
            height: 50px;
            background: url(images/bgs.png) no-repeat -159px -51px;
            position: fixed;
            right: 10px;
            top: 40%;
        }
        .erweima {
            position: absolute;
            top: 0;
            left: -150px;
        }
        .nodeSmall a {
            display: block;
            width: 50px;
            height: 50px;
        }
        .hide {
            display: none;
        }
        .show {
            display: block;
        }
    </style>
</head>
<body>
    <div class="nodeSmall" id="node_small">
        <div class="erweima hide" id="er">
            <img src="images/456.png" alt=""/>
        </div>
    </div>
    <script src="common.js"></script>
    <Script > 
        // When the mouse moved into the onmouseover 
        // When the mouse is moved onmouseout 
        var nodeSmall = My $ ( ' node_small ' ); 
        nodeSmall.onmouseover =  function () {
             // . My $ ( 'ER') = className 'erweima Show'; 
            $ My ( ' ER ' ) .className = My $ ( ' ER ' ) .className.replace ( ' hide ' , ' Show ' ); 
        } 


        nodeSmall.onmouseout = function () {
            // my$('er').className = 'erweima hide';
            my$('er').className = my$('er').className.replace('show', 'hide');
        }
    </script>
</body>
</html>

The common content

function my$(id) {
  return document.getElementById(id);
}

 

Guess you like

Origin www.cnblogs.com/jiumen/p/11405025.html