欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

純CSS3+DIV實(shí)現(xiàn)小三角形邊框效果的示例代碼

  發(fā)布時間:2020-08-03 15:28:35   作者:子欽加油   我要評論
這篇文章主要介紹了純CSS3+DIV實(shí)現(xiàn)小三角形邊框,本文通過實(shí)例代碼給大家介紹的非常詳細(xì),對大家的學(xué)習(xí)或工作具有一定的參考借鑒價值,需要的朋友可以參考下

具體代碼如下所示:

html代碼是這樣的
<div class="arrow-up">
     <!--向上的三角-->
</div>
<div class="arrow-down">
    <!--向下的三角-->
</div>
<div class="arrow-left">
    <!--向左的三角-->
</div>
<div class="arrow-right">
    <!--向右的三角-->
</div>
 
下面用CSS3分別實(shí)現(xiàn)向上、下、左、右的三角形
/*箭頭向上*/
.arrow-up {
    width:0;
    height:0;
    border-left:30px solid transparent;
    border-right:30px solid transparent;
    border-bottom:30px solid #fff;
}
    
 /*箭頭向下*/
.arrow-down {
    width:0;
    height:0;
    border-left:20px solid transparent;
    border-right:20px solid transparent;
    border-top:20px solid #0066cc;
}
    
 /*箭頭向左*/
.arrow-left {
    width:0;
    height:0;
    border-top:30px solid transparent;
    border-bottom:30px solid transparent;
    border-right:30px solid yellow;
}
   
/*箭頭向右*/
.arrow-right {
    width:0;
    height:0;
    border-top:50px solid transparent;
    border-bottom: 50px solid transparent;
    border-left: 50px solid green;
}

小程序示例

wxml

<view class="index_sale_lists">
      <view class="sanjiao"></view>
      <view class="index_sale_list">
        <view class="index_sale_choice">你已選擇:<text>上腦</text></view>
        <view class="index_sale_tezhi">
          <text>
            特質(zhì):牛上腦是位于肩頸部靠后,脊骨兩側(cè)的牛肉,肉質(zhì)細(xì)嫩多汁,脂肪雜交均勻,有好看的大理石花紋,口感綿軟,入口即化,脂肪低而蛋白質(zhì)含量高,適合涮火鍋,可煎炸,炸和燒烤。
          </text>
        </view>
      </view>
    </view>

wxss

.index_sale_lists{
  margin: 50rpx 24rpx 0;
  background-color: #F2F6F4;
  border-radius: 20rpx;
  position: relative;
}
.sanjiao{
    position: absolute;
    left: 50%;
    top:-15rpx;
    width:0;
    height:0;
    border-left:10px solid transparent;
    border-right:10px solid transparent;
    border-bottom:10px solid #F2F6F4;
    /* z-index:-1; */
}

總結(jié)

到此這篇關(guān)于純CSS3+DIV實(shí)現(xiàn)小三角形邊框的文章就介紹到這了,更多相關(guān)css div 實(shí)現(xiàn)三角形邊框內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章,希望大家以后多多支持腳本之家!

相關(guān)文章

最新評論