第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

CSS3可以實(shí)現(xiàn) 三根線條 旋轉(zhuǎn)成一個(gè)箭頭嗎,或者用其他辦法?求大佬指導(dǎo)

CSS3可以實(shí)現(xiàn) 三根線條 旋轉(zhuǎn)成一個(gè)箭頭嗎,或者用其他辦法?求大佬指導(dǎo)

qq_控心_0 2017-01-31 21:54:04
就是三根相等的線條 變成 一個(gè)三角形箭頭,能不能用CSS 或者JS 實(shí)現(xiàn)??
查看完整描述

5 回答

已采納
?
hahhhha

TA貢獻(xiàn)50條經(jīng)驗(yàn) 獲得超32個(gè)贊

參考一樓代碼,稍微加點(diǎn)動(dòng)畫漸變,代碼如下。

<!DOCTYPE?html>
<html>
<head>
????<style>
????????.arrow?{
????????????width:?65px;
????????????height:?50px;
????????????background:?#000;
????????????padding:?30px?0?0?30px;
????????????margin:30px?auto?0;
????????????position:?relative;
????????}
????????.arrow?i?{
????????????display:?block;
????????????width:?50px;
????????????height:?5px;
????????????background:?#fff;
????????????position:?absolute;
????????????border-radius:?10px?0?0?10px;
????????????transition:all?300ms;
????????}
????????.arrow?i:nth-of-type(1)?{
????????????width:?35px;
????????????top:20px;
????????}
????????.arrow?i:nth-of-type(2)?{
????????????width:?35px;
????????????top:35px;
????????}
????????.arrow?i:nth-of-type(3)?{
????????????width:?35px;
????????????top:50px;
????????}
????????.arrow:hover?i{
????????????border-radius:?0;
????????????height:?3px;
????????}
????????.arrow:hover?i:nth-of-type(1){
????????????top:35px;
????????????transform-origin:?left?center;
????????????transform:?rotate(-45deg);
????????}
????????.arrow:hover?i:nth-of-type(2){
????????????width:?55px;
????????????margin-left:-1px;
????????????border-radius:?10px?0?0?10px;
????????}
????????.arrow:hover?i:nth-of-type(3){
????????????top:35px;
????????????transform-origin:?left?center;
????????????transform:?rotate(45deg);
????????}
????</style>
</head>
</body>
????<div?class="arrow">
????????<i></i>
????????<i></i>
????????<i></i>
????</div>
</body>
</html>


http://img1.sycdn.imooc.com//589819b20001baa400350035.jpg

其實(shí)我真的不是東北人

查看完整回答
反對(duì) 回復(fù) 2017-02-06
?
其實(shí)我真的不是東北人

TA貢獻(xiàn)105條經(jīng)驗(yàn) 獲得超66個(gè)贊

<!DOCTYPE html>

<html>

<head>

? ? <style>

? ? ? ? * {

? ? ? ? ? ? margin:0;

? ? ? ? ? ? padding:0;

? ? ? ? }

? ? ? ? .arrow {

? ? ? ? ? ? width: 80px;

? ? ? ? ? ? height: 50px;

? ? ? ? ? ? background: #000;

? ? ? ? ? ? padding: 30px 0 0 30px;

? ? ? ? ? ? margin:30px auto 0;

? ? ? ? ? ? position: relative;

? ? ? ? }

? ? ? ? .arrow i {

? ? ? ? ? ? display: block;

? ? ? ? ? ? width: 50px;

? ? ? ? ? ? height: 5px;

? ? ? ? ? ? background: #fff;

? ? ? ? ? ? position: absolute;

? ? ? ? ? ? border-radius: 10px 0 0 10px;


? ? ? ? }

? ? ? ? .arrow i:nth-of-type(1) {

? ? ? ? ? ? width: 35px;

? ? ? ? ? ? transform-origin: left center;

? ? ? ? ? ? transform: rotate(-35deg);

? ? ? ? }

? ? ? ? .arrow i:nth-of-type(3) {

? ? ? ? ? ? width: 35px;

? ? ? ? ? ? transform-origin: left center;

? ? ? ? ? ? transform: rotate(35deg);

? ? ? ? }

? ? </style>

</head>

</body>

<div class="arrow">

? ? <i></i>

? ? <i></i>

? ? <i></i>

</div>

</body>

</html>


查看完整回答
反對(duì) 回復(fù) 2017-02-01
?
安靜的沙漠

TA貢獻(xiàn)3條經(jīng)驗(yàn) 獲得超0個(gè)贊

樓上說的,就用CSS3 transform?

觸發(fā)動(dòng)畫時(shí)中間的線條不變,上下兩條各順逆時(shí)針旋轉(zhuǎn)45度,css動(dòng)畫有很多參數(shù),根據(jù)案例調(diào)整一下就好了

查看完整回答
反對(duì) 回復(fù) 2017-02-01
?
慕粉昵稱已占用

TA貢獻(xiàn)1條經(jīng)驗(yàn) 獲得超0個(gè)贊

可以試試定位

查看完整回答
反對(duì) 回復(fù) 2017-02-01
  • qq_控心_0
    qq_控心_0
    我是想實(shí)現(xiàn)這個(gè)中間旋轉(zhuǎn)的一個(gè)過渡動(dòng)作,不是直接定位后的,還是謝謝你的回答
?
翰術(shù)

TA貢獻(xiàn)21條經(jīng)驗(yàn) 獲得超8個(gè)贊

CSS3 transform?

可以平移 旋轉(zhuǎn) 傾斜 縮放?


查看完整回答
反對(duì) 回復(fù) 2017-02-01
  • 5 回答
  • 0 關(guān)注
  • 4555 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)