CSS 3概要(三)

11001 ワード

CSS 3ピクチャ応答ピクチャ応答ピクチャ応答ピクチャは、各種サイズの画面に自動的に適合する.
img {
    max-width: 100%;
    height: auto;
}

画像フィルタCSS filterプロパティは、要素に可視効果(たとえば、ブラーと彩度)を追加するために使用されます.注:Internet ExplorerまたはSafari 5.1(以降)ではサポートされていません.
             (100%   ):
img {
    -webkit-filter: grayscale(100%); /* Chrome, Safari, Opera */
    filter: grayscale(100%);
}

マウスボタン

<html>
<head>
<meta charset="utf-8"> 
<title>    (runoob.com)title> 
<style>
.button {
    background-color: #4CAF50; /* Green */
    border: none;
    color: white;
    padding: 16px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
    cursor: pointer;
}

.button1 {
    background-color: white; 
    color: black; 
    border: 2px solid #4CAF50;
}

.button1:hover {
    background-color: #4CAF50;
    color: white;
}

.button2 {
    background-color: white; 
    color: black; 
    border: 2px solid #008CBA;
}

.button2:hover {
    background-color: #008CBA;
    color: white;
}

.button3 {
    background-color: white; 
    color: black; 
    border: 2px solid #f44336;
}

.button3:hover {
    background-color: #f44336;
    color: white;
}

.button4 {
    background-color: white;
    color: black;
    border: 2px solid #e7e7e7;
}

.button4:hover {background-color: #e7e7e7;}

.button5 {
    background-color: white;
    color: black;
    border: 2px solid #555555;
}

.button5:hover {
    background-color: #555555;
    color: white;
}
style>
head>
<body>

<h2>      h2>
<p>       :hover                  。p>
<p><strong>  :strong>        <code>transition-durationcode>       "hover"      :p>

<button class="button button1">Greenbutton>
<button class="button button2">Bluebutton>
<button class="button button3">Redbutton>
<button class="button button4">Graybutton>
<button class="button button5">Blackbutton>

body>
html>