M69W 发布的文章

魔趣rom计划在未来彻底移除ROM中的推广软件,同时也移除魔趣市场。
详情看http://weibo.com/p/1001603870057204730103
一直很喜欢魔趣的rom,特效和省电,本地化...
如果你的手机安卓手机型号有匹配,不如去刷机看看,你会爱上她的

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"> 
<title>CSS3-面包屑导航</title> 
<style>
ul.breadcrumb {
    padding: 8px 16px;
    list-style: none;
    background-color: #eee;
}
ul.breadcrumb li {display: inline;}
ul.breadcrumb li+li:before {
    padding: 8px;
    color: black;
    content: "/\00a0";
}
ul.breadcrumb li a {color: green;}
</style>
</head>
<body>

<h2>面包屑导航</h2>
<ul class="breadcrumb">
  <li><a href="#">首页 </a></li>
  <li><a href="#">前端 </a></li>
  <li><a href="#">HTML 教程 </a></li>
  <li>HTML 段落</li>
</ul>

</body>
</html>

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <title>按钮动画</title>
    <link rel="stylesheet" href="">
    <style>
    .button{
        display: inline-block;
        border-radius: 4px;
        background-color: #f4511e;
        border: none;
        color: white;
        text-align: center;
        font-size: 28px;
        padding: 20px;
        width: 200px;
        transition: all 0.5s;
        cursor: pointer;
        margin: 5px;
    }
    .button span{
        cursor: pointer;
        display: inline-block;
        position: relative;
        transition: 0.5s;
    }
    .button span:after{
        content: '»';
        display: inline-block;
        opacity: 0;
        top: 0;
        right: -20px;
        transition: 0.5s;
    }
    .button:hover span{
        padding-right: 25px;
    }
    .button:hover span:after{
        opacity: 1;
        right: 0;
    }
    </style>
</head>
<body>
    <button class="button"><span>Hover </span></button>
</body>
</html>