第八章:使用jQuery操作DOM ——课后作业:

1.新增游戏列表

<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>游戏推荐 </title>
    <style type="text/css" >
        *{
            margin:0px;
            padding:0px;
            font-size:12px;
        }
        #listbox{
            margin:10px;
            padding:15px;
            border:1px solid #CCCCCC;
            color:#0066FF;
        }
        dl{
            display:inline-block;
            margin:15px;
        }
        dd{
            font-size:14px;
            color:#663300;
        }

        dd a{
            text-decoration:none;
            font-size:14px;
            color:#FF3300;
        }
        dd a:hover{
            text-decoration:underline;
        }
        .clear{
            clear:both;
            height:0px;
        }
    </style>
</head>
<body>
<div id='listbox'>
    <dl>
        <dt><img src="images/p1.jpg" /></dt>
        <dd>街机三国</dd>
        <dd><a class='del' href='javascript:void(0);'>删除</a></dd>
    </dl>
    <dl>
        <dt><img src="images/p2.jpg" /></dt>
        <dd>霸域</dd>
        <dd><a class='del' href='javascript:void(0);'>删除</a></dd>
    </dl>
    <dl>
        <dt><img src="images/p3.jpg" /></dt>
        <dd>斗破乾坤</dd>
        <dd><a class='del' href='javascript:void(0);'>删除</a></dd>
    </dl>
    <div class='clear'></div>
    <input type="button" value='新增游戏'  class='add'/>
</div>
   <script src="js/jquery-1.12.4.js"></script>
   <script type="text/javascript">
       $(function () {
           $("input[type='button']").click(function () {
               var $img="<dl><dt><img src='images/p4.jpg'></dt>"
               var $name="<dd>大航海家oL</dd>"
               var $sc ="<dd><a class='del' href='javascript:void(0);' >删除</a></dd></dl>"
               var $str=$img+$name+$sc;
               $("#listbox dl:last").after($str).clone()
               $(".del").click(function () {
                   $(this).parent().parent().remove()
               })
              })
       })
   </script>
</body>
</html>

2.制作男生地带页面,鼠标指针移过商品图片时,图片变为半透明显示,透明度为0.6;鼠标指针移除时,恢复正常显示,图片透明度变为1。

<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>男生地带 </title>
    <style type="text/css" >
        *{
            margin:0px;
            padding:0px;
            font-size:12px;
        }
        #boxlist{
            height:526px;
            width:996px;
            background:#fff url(images/bg.jpg) no-repeat 0px 0px;
        }
        .main{
            margin-left:278px;
            border:1px solid #CCC;
        }
        .box{
            width:168px;
            padding:23px 5px;
            border-right:1px solid #CCC;
            border-bottom:1px solid #CCC;
            float:left;
            cursor:pointer;
        }
        .class{
            -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
            filter:alpha(opacity=60);
            opacity:0.6;
        }

    </style>
</head>
<body>
<div id='boxlist'>
    <div style='height:43px;' ></div>
    <div class='main'>
        <div class='box'>
            <dl>
                <dt><img src='images/p1.gif' /></dt>
                <dd>
                    简约色彩系列带低帮帆布鞋12 黑色
                    <s>市场价:¥269</s>
                    <font color="#FF0000">售价:69</font>
                </dd>
            </dl>
        </div>
        <div class='box'>
            <dl>
                <dt><img src='images/p1.gif' /></dt>
                <dd>
                    简约色彩系列带低帮帆布鞋12 黑色
                    <s>市场价:¥269</s>
                    <font color="#FF0000">售价:69</font>
                </dd>
            </dl>
        </div>
        <div class='box'>
            <dl>
                <dt><img src='images/p2.gif' /></dt>
                <dd>
                    简约色彩系列带低帮帆布鞋12 黑色
                    <s>市场价:¥269</s>
                    <font color="#FF0000">售价:69</font>
                </dd>
            </dl>
        </div>
        <div class='box'>
            <dl>
                <dt><img src='images/p3.gif' /></dt>
                <dd>
                    简约色彩系列带低帮帆布鞋12 黑色
                    <s>市场价:¥269</s>
                    <font color="#FF0000">售价:69</font>
                </dd>
            </dl>
        </div>
        <div class='box'>
            <dl>
                <dt><img src='images/p4.gif' /></dt>
                <dd>
                    简约色彩系列带低帮帆布鞋12 黑色
                    <s>市场价:¥269</s>
                    <font color="#FF0000">售价:69</font>
                </dd>
            </dl>
        </div>
        <div class='box'>
            <dl>
                <dt><img src='images/p4.gif' /></dt>
                <dd>
                    简约色彩系列带低帮帆布鞋12 黑色
                    <s>市场价:¥269</s>
                    <font color="#FF0000">售价:69</font>
                </dd>
            </dl>
        </div>
        <div class='box'>
            <dl>
                <dt><img src='images/p2.gif' /></dt>
                <dd>
                    简约色彩系列带低帮帆布鞋12 黑色
                    <s>市场价:¥269</s>
                    <font color="#FF0000">售价:69</font>
                </dd>
            </dl>
        </div>
        <div class='box'>
            <dl>
                <dt><img src='images/p1.gif' /></dt>
                <dd>
                    简约色彩系列带低帮帆布鞋12 黑色
                    <s>市场价:¥269</s>
                    <font color="#FF0000">售价:69</font>
                </dd>
            </dl>
        </div>
        <div style='clear:both;'></div>
    </div>
</div>
    <script src="js/jquery-1.12.4.js"></script>
   <script type="text/javascript">
       $(function () {
           $("img").mouseover(function () {
               $(this).addClass("class")
           })
           $("img").mouseout(function () {
               $(this).removeClass("class")
           })
       })
   </script>
</body>
</html>

猜你喜欢

转载自blog.csdn.net/gz98411/article/details/81177977