cssを使ったちょっとしたテクニック
[CSS]素晴らしいテクニックが満載!囲いや区切りなどのラインを実装するスタイルシートのまとめ | コリス
コチラの記事を拝見し、なるほどー・・・と思ったので、ちょっと実践してみたくなったので試してみました。
DEMOはこちらです。
cssも奥が深いですね〜
結局理解出来てない部分もありますが、、、
まだまだ可能性を大きく秘めていますね。
発想とcssの理解が必要になってきますね。
cssを一応こちらに掲載しておきます。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 | /*** 手書きのような線で囲う ***/ .box01 { border:solid 5px #ff3300; width:200px; margin:25px 0; border-radius: 255px 30px 225px 30px/30px 225px 30px 255px; padding:30px 10px; } /*** 重なるリングのような線 ***/ .box02 { position:absolute; width:200px; height:200px; text-align:center; line-height: 200px; } .box02:after, .box02:before{ content:""; border-radius:100%; position:absolute; top:0; left:0; width:100%; height:100%; transform-origin:center center; } .box02:before { top:5px; left:5px; } .box02:after{ box-shadow: inset 0 12px 0 rgba(250, 250, 0, 0.8), inset 12px 0 0 rgba(250, 200, 0, 0.8), inset 0 -12px 0 rgba(250, 150, 0, 0.8), inset -12px 0 0 rgba(250, 100, 0, 0.8); } .box02:before{ box-shadow: inset 0 12px 0 rgba(0, 250, 250, 0.8), inset 12px 0 0 rgba(0, 200, 200, 0.8), inset 0 -12px 0 rgba(0, 150, 200, 0.8), inset -12px 0 0 rgba(0, 200, 250, 0.8); } /*** ギザギザの線を作る ***/ .box03 { background: linear-gradient(-135deg, #3f61d5 10px, transparent 0) 0 10px, linear-gradient(135deg, #3f61d5 10px, #ffffff 0) 0 10px; background-color: #3f61d5; background-size: 20px 20px; width: 400px; height: 200px; background-repeat: repeat-x; background-position: 0 90%; } /*** テキスト左右に線を引く ***/ h4.ho{ overflow: hidden; text-align: center; position: relative; margin-top: 20px; } h4.ho span { display: inline-block; position: relative; padding: 0 20px; font-size: 18px; } h4.ho span:before, h4.ho span:after{ position: absolute; content: ""; border-bottom: 1px solid #999; top: 50%; width: 99em; } h4.ho span:before { left: 100%; } h4.ho span:after { right: 100%; } /*** ドッグイヤーみたいな折り返し ***/ .box04 { position:relative; width:400px; padding: 20px 30px; margin:20px auto; color:#fff; background:#e0a32f; overflow:hidden; } .box04:before { content:""; position:absolute; top:0; right:0; border-width:0 20px 20px 0; border-style:solid; border-color:#fff #fff #b27c14 #b27c14; display:block; width:0; -webkit-box-shadow:0 1px 1px rgba(0,0,0,0.3), -1px 1px 1px rgba(0,0,0,0.2); -moz-box-shadow:0 1px 1px rgba(0,0,0,0.3), -1px 1px 1px rgba(0,0,0,0.2); box-shadow:0 1px 1px rgba(0,0,0,0.3), -1px 1px 1px rgba(0,0,0,0.2); } /*** 簡単な飾り罫線みたいな囲い ***/ .box05 { margin: 20px auto 0; width: 400px; padding: 20px 0; border: 1px solid #888; border-width: 1px 0; position:relative; background: #fff; box-sizing: border-box; display: block; } .box05 div{ position: relative; padding: 20px 40px; margin: 0 -20px; background: #fff; border: 1px solid #888; border-width: 0 1px; box-sizing: border-box; } .box05:before, .box05:after, .box05 div:before, .box05 div:after { content:''; position: absolute; width: 80px; height: 80px; border: 20px solid #ffffff; border-radius: 50%; background: transparent; box-shadow: inset 0 0 0 1px #888; box-sizing: border-box; } .box05:before{ top: -40px; left: -60px; clip: rect(40px, auto, auto, 40px); -webkit-clip-path: rectangle(50%, 50%, 100%, 100%, 0, 0); } .box05:after{ top: -40px; right: -59px; clip: rect(40px, 40px, auto, auto); -webkit-clip-path: rectangle(0, 50%, 50%, 100%, 0, 0); } .box05 div:before { bottom: -60px; left: -40px; clip: rect(auto, auto, 40px, 40px); -webkit-clip-path: rectangle(50%, 0, 100%, 50%, 0, 0); } .box05 div:after { bottom: -60px; right: -40px; clip: rect(auto, 40px, 40px, auto); -webkit-clip-path: rectangle(0, 0, 50%, 50%, 0, 0); } |
Author Profile
スターフィールド編集部
SHARE