CSS3学习

demo1 css3实现tab样式

效果:

导航栏

代码:

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <style>
        /*.demo {
            width: 100px;
            height: 100px;*/
            /*box-shadow: 10px 10px 5px orange;
            text-shadow: 10px 1px 1px green;*/
            /*圆*/
           /*border-radius: 50% 50% 50% 50%;*/
           /*border-top-right-radius: 50% 100%;
            /*半圆*/
            /*border-top-left-radius: 50% 100%;
            background: red;*/
            /*叶子*/
            /*border-top-left-radius: 80% 100px;
            border-bottom-right-radius: 80px 100px;
            background: green;*/
            /*box-shadow: 10px 10px 1px 1px #000 inset;*/
            /*background: red;*/
            /*color: rgba(0, 0, 0, 0.3);
            text-shadow: 10px 10px 2px rgba(255, 0, 0, 0.2);
            background: radial-gradient(ellipse 30px 50px at 50% 50%, #fff, yellow, #000, transparent);
        }*/
        /*.index {
            width: 0;
            height: 0;
            border: 50px solid transparent;
            border-top-color: red;
        }*/
        /*作业*/
        
        * {
            padding: 0;
            margin: 0;
            list-style: none;
        }
        
        .tip {
            width: 600px;
            height: 50px;
            background: orange;
            box-shadow: 1px 3px 3px 1px #000;
            margin: 0 auto;
        }
        
        .tip .common {
            float: left;
            margin: 5px;
            margin-bottom: 2px;
            padding: 10px;
            color: #fff;
            border-color: rgb(255, 255, 255, 0.7);
            border-style: none dotted none none;
            text-shadow: 1px 1px 2px #000;
        }
        
        .tip .last {
            border-style: none;
        }
    </style>
</head>

<body>
    <!--<div class="demo">我很帅</div>
    <div class="index"></div>-->
    <ul class="tip">
        <li class="common">Home</li>
        <li class="common">About &nbsp; me</li>
        <li class="common">Portfolio</li>
        <li class="common">Blog</li>
        <li class="common">Resources</li>
        <li class="common last">Contact &nbsp; me</li>
    </ul>
</body>
</html>

demo2 选项卡功能

效果:

页面一

页面二

页面三

代码:

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Css3</title>
    <style>
        /*li[class="first"] {
            background: rgba(255, 0, 0, 0.5);
        }*/
        /*选项卡*/
        
        * {
            padding: 0;
            margin: 0;
        }
        .wrapper {
            position: relative;
            margin: 0 auto;
            border: 1px solid rgba(0, 0, 0, 0.1);
            width: 400px;
            height: 400px;
        }
        
        .wrapper input {
            height: 30px;
            width: 30px;
        }
        
        .wrapper div {
            position: absolute;
            width: 400px;
            height: 370px;
            top: 30px;
            left: 0;
            line-height: 350px;
            display: none;
        }
        
        .wrapper div:nth-of-type(1) {
            background: red;
        }
        
        .wrapper div:nth-of-type(2) {
            background: green;
        }
        
        .wrapper div:nth-of-type(3) {
            background: blue;
        }
        
        input:checked+div {
            display: block;
        }
        /* .wrapper {
            position: relative;
            margin: 0 auto;
            border: 1px solid rgba(0, 0, 0, 0.1);
            width: 400px;
            height: 400px;
            overflow: hidden;
        }
        
        .wrapper a {
            position: relative;
            margin: 0 auto;
            display: inline-block;
            width: 30px;
            height: 30px;
            border-radius: 20px;
            background: rgba(0, 0, 0, 0.7);
        }
        
        .wrapper #demo1 {
            width: 400px;
            height: 370px;
            background: red;
            display: block;
        }
        
        .wrapper #demo2 {
            display: block;
            width: 400px;
            height: 370px;
            background: green;
        }
        
        .wrapper #demo3 {
            display: none;
            width: 400px;
            height: 370px;
            background: blue;
        }
        
        div:target {
            background: red;
        }
        
        span:target {
            background: green;
        }
        
        p:target {
            display: block;
            background: blue;
        } */
        
        /* li:nth-child(2) {
            background: red;
        } */
    </style>
</head>
<body>
    <!-- <ul>
        <span>span</span>
        <li class="first">1</li>
        <li>2</li>
        <li>3</li>
        <li>4</li>
    </ul> -->
    <!--选项卡-->
    <div class="wrapper">
        <input type="radio" name="team" value="1" checked="checked">
        <div>1</div>
        </input>
        <input type="radio" name="team" value="2">
        <div>2</div>
        </input>
        <input type="radio" name="team" value="3">
        <div>3</div>
        </input>
    </div>
    <!-- <div class="wrapper"> -->
        <!-- <div class="btn">
            <a href="#demo1"></a>
            <a href="#demo2"></a>
            <a href="#demo3"></a>
        </div> -->
        <!-- <div id="demo1">1</div>
        <span id="demo2">2</span>
        <p id="demo3">3</p> -->
    <!-- </div> -->
</body>
</html>

demo3通过hover去切换页面

效果:

页面一

页面二

页面三

代码:

<html lang='en'>
<head>
    <meta charset='utf-8'>
    <title>css-3</title>
    <style type="text/css">
        *{
            padding: 0;
            margin: 0;
        }

        /*人物展示*/

        .wrapper li{
            width: 400px;
            height: 100px;


        }
        .wrapper li span{
            position: absolute;
            display: block;
            width: 200px;
            height: 100px;
            line-height: 100px;
            text-align: center;
            color: green;
            z-index: 1000;

        }
        .wrapper li div{
            position: absolute;
            left: 0;
            top: 0;
            height: 300px;
            width: 200px;
            opacity: 0;
            transition:all 1000ms linear;
        }
        .wrapper li:nth-of-type(1) div{
            background: url('1 六剑奴.jpg') no-repeat;
            background-size: 100% 100%;
        }
        .wrapper li:nth-of-type(2) div{
            background: url('4  白凤.jpg') no-repeat;
            background-size: 100% 100%;
        }
        .wrapper li:nth-of-type(3) div{
            background: url('1 雪女.jpg') no-repeat;
            background-size: 100% 100%;
        }
        .wrapper li span:hover + div{
            opacity: 1;
            transform: translatex(200px) translatez(1px);
      /* 开启cpu加速 */

        }
        div{
            position: absolute;
            top: 0;
            left: 0;
            width: 100px;
            height: 100px;
            background: deeppink;
            animation: move 3s linear 1s infinite paused alternate both;
        }
        @keyframes move{
            0%{
                left: 0px;
            }
            100%{
                left: 500px;
            }
        }
    </style>
</head>
<body>
    <!-- 人物展示 -->
    <ul class="wrapper">
        <li>
            <span>六剑奴</span>
            <div></div>
        </li>
        <li>
            <span>白凤</span>
            <div></div>
        </li>
        <li>
            <span>雪女</span>
            <div></div>
        </li>
    </ul>
</body>
</html>

demo4 点击实现网易云音乐播放器的碟片转动播放效果

效果:

播放状态

播放状态时:滑针收回,碟片顺时针转动


暂停状态

暂停状态时: 滑针搭在碟片上,碟片停止转动、

代码:

<html lang='en'>
<head>
    <meta charset='utf-8'>
    <title>css-3</title>
    <style type="text/css">
        *{
            padding: 0;
            margin: 0;
        }
        /* 网易云音乐碟片播放 */
        .wrapper{
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
        .wrapper .turnTable{
            width: 100px;
            height: 100px;
            border: 50px solid #333;
            border-radius: 50%;
            background: url('10 大少司命.jpg');
            background-size: 100% 100%;
            text-align: center;
            line-height: 100px;
            animation-name: turn;
            animation-duration: 12s;
            animation-timing-function: linear;
            animation-play-state: paused;
            animation-delay: 1s;
            animation-iteration-count: infinite;
        }
        .wrapper .turnTable span{
            color: #fff;
            font-weight: 600px;
        }
        .wrapper .pin{
            position: absolute;
            top: -60px;
            left: 50%;
            transform: translatex(-50%);
            width: 5px;
            height: 100px;
            background: #ccc;
            transform-origin: top;
            transform: rotatez(-45deg);
            transition: all 1s linear;
        }
        .wrapper .pinTurn{
            transform: rotatez(0deg);
        }
        @keyframes turn{
            0%{
                transform: rotatez(0deg);
            }
            100%{
                transform: rotatez(360deg);
            }
        }

    </style>
</head>
<body>
    
    <!-- 网易云音乐碟片播放 -->
    <button>play/paused</button>
    <div class="wrapper">
        <div class="turnTable">
            <span>流浪</span>
        </div>
        <div class="pin"></div>
    </div>
    <script type="text/javascript">
        // 网易云音乐碟片播放
        var oTable = document.getElementsByClassName('turnTable')[0],
        oPin = document.getElementsByClassName('pin')[0],
        oBtn = document.getElementsByTagName('button')[0],
        key = false,
        timer;
        oBtn.onclick = function(){
            clearInterval(timer);
            key = !key;
            if(key){
                oPin.className = 'pin pinTurn';
                timer = setInterval(function(){
                    oTable.style.animationPlayState = 'paused';
                },1000)
            }else{
                oTable.style.animationPlayState = 'running';
                oPin.className = 'pin';
            }
        }
    </script>
</body>
</html>

demo5 报纸的分栏效果

效果:

报纸分栏

代码:

<html lang="en">
<head>
    <meta charset="utf-8">
    <title>css3-4</title>
    <style type="text/css">
        div{
            width: 500px;
            height: 200px;
            column=width: 200px;
            column-count: 2; 
            column-nap: 10px;
            column-rule-color: red;
            column-rule-width: 5px;
            column-rule-style: solid;
        }
    </style>
</head>
<body>
    <div>看大宋国人【水平高 啊放假哦深加工发生的个数见佛的感觉送I就给送大概I介绍的看大宋国人【水平高 啊放假哦深加工发生的个数见佛的感觉送I就给送大概I介绍的看大宋国人【水平高 啊放假哦深加工发生的个数见佛的感觉送I就给送大概I介绍的看大宋国人【水平高 啊放假哦深加工发生的个数见佛的感觉送I就给送大概I介绍的看大宋国人【水平高 啊放假哦深加工发生的个数见佛的感觉送I就给送大概I介绍的看大宋国人【水平高 啊放假哦深加工发生的个数见佛的感觉送I就给送大概I介绍的看大宋国人【水平高 啊放假哦深加工发生的个数见佛的感觉送I就给送大概I介绍的看大宋国人【水平高 
    啊放假哦深加工发生的个数见佛的感觉送I就给送大概I介绍的</div>
</body>
</html>

position的四种属性

1. static(静态定位):默认值,无法使用top,bottom,left,right以及z-index,这种定位使用margin来改变位置,并且不脱离文档流。

2.relative(相对定位):生成相对于定位的元素,通过top,bottom,left,right来设置相对于其正常(原先本身)进行定位。这种定位不脱离文档流,可通过z-index进行层次分级。

3.absolute(绝对定位):可以用top,right,bottom,left来控制位置这种定位脱离文档流,是相对于最近的非static定位元素来定位的,如果没有有定位的父级,它的参照为body。

4.fixed(固定定位):相对于浏览器窗口定位,这种定位脱离文档流,元素通过left,top,right,bottom定位,也可通过z-index层次分级。

right只有脱离文档流的定位元素才能生效

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
禁止转载,如需转载请通过简信或评论联系作者。
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,837评论 6 496
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,551评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 160,417评论 0 350
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,448评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,524评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,554评论 1 293
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,569评论 3 414
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,316评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,766评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,077评论 2 330
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,240评论 1 343
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,912评论 5 338
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,560评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,176评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,425评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,114评论 2 366
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,114评论 2 352

推荐阅读更多精彩内容