建站知識
網(wǎng)站設(shè)計(jì)知識 網(wǎng)站建設(shè)知識 網(wǎng)絡(luò)營銷知識 微信資訊 常見問題 網(wǎng)站備案 近期客戶網(wǎng)站建設(shè)套餐
標(biāo)準(zhǔn)型網(wǎng)站建設(shè) 精美型網(wǎng)站建設(shè) 營銷型網(wǎng)站建設(shè) 高端品牌網(wǎng)站建設(shè) 電子商務(wù)型網(wǎng)站建設(shè) 行業(yè)門戶型網(wǎng)站建設(shè) 手機(jī)網(wǎng)站建設(shè) 微信網(wǎng)站建設(shè)純CSS畫的三角形并可翻轉(zhuǎn)
三角形翻轉(zhuǎn)的效果,大家想必見過,這里就把相關(guān)代碼貼下,大家可以應(yīng)用哦,當(dāng)然翻轉(zhuǎn)效果暫時(shí)不支持IE 6 7 8。
1、純CSS做個(gè)三角
代碼如下:
<style type="text/css">
.rightdirection
{
width:0;height:0;
line-height:0;
border-width:20px;
border-style:solid;
border-color:transparent transparent transparent #A9DBF6;
}
.bottomdirection
{
width:0;height:0;
line-height:0;
border-width:20px;
border-style:solid;
border-color: #A9DBF6 transparent transparent transparent;
}
.leftdirection
{
width:0;height:0;
line-height:0;
border-width:20px;
border-style:solid;
border-color: transparent #A9DBF6 transparent transparent;
}
.topdirection
{
width:0;height:0;
line-height:0;
border-width:20px;
border-style:solid;
border-color: transparent transparent #A9DBF6 transparent;
}
</style>
<div class="rightdirection"></div>
<p>
<div class="bottomdirection"></div>
<p>
<div class="leftdirection"></div>
<p>
<div class="topdirection"></div>
2.翻轉(zhuǎn):實(shí)現(xiàn)翻轉(zhuǎn)
<!DOCTYPE html>
<html>
<head>
<style>
.jt b {
border-color: #FFD0C0 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
border-style: solid dashed dashed;
border-width: 10px;
font-size: 0;
height: 0;
line-height: 0;
position: absolute;
left: 150px;
top: 14px;
width: 0;
}
.jt:hover b {
border-color: #ccc rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
transform: rotate(180deg);
transform-origin: 50% 30% 0;
transition: transform 0.2s ease-in 0s;
-moz-transform: rotate(180deg);
-moz-transform-origin: 50% 30% 0;
-moz-transition: transform 0.2s ease-in 0s;
}
</style>
</head>
<body>
<div class="jt">
<b>你好啊</b>
</div>
</body>
</html>
- CSS的模板提供的Web體驗(yàn)不同類
- 關(guān)于表格與DIV+CSS建站的區(qū)別
- 網(wǎng)站設(shè)計(jì)中css樣式使用技巧
- DIV+CSS布局的優(yōu)點(diǎn)和其所帶來的視覺效果
- CSS網(wǎng)頁設(shè)計(jì)中常遇到的問題
- 網(wǎng)站前端設(shè)計(jì)中的CSS Sprites應(yīng)該怎樣做
- 網(wǎng)頁設(shè)計(jì):CSS高級技巧之網(wǎng)頁布局
- 網(wǎng)頁設(shè)計(jì)中針對中文排版CSS心得
- CSS+DIV網(wǎng)站設(shè)計(jì)的優(yōu)勢和問題
- 網(wǎng)頁設(shè)計(jì)中CSS調(diào)試的重要方法,簡單有效!