html5 扇形导航效果图,js+css实现扇形导航效果

本文实例为大家分享了js+css实现扇形导航效果的具体代码,供大家参考,具体内容如下\

扇形导航

*{

margin: 0;

padding: 0;

}

html,body{

height: 100%;

overflow: hidden;

}

#wrap{

height: 50px;

width: 50px;

/* background-color: pink; */

position: fixed;

right: 15px;

bottom: 15px;

/* overflow: hidden; */

}

#wrap>.home{

height: 49px;

width: 49px;

/* margin: auto; */

background: url(img/home.png) ;

background-position: center;

border-radius: 50%;

transition: 1s;

position: absolute;

z-index: 1;

}

#wrap>.nav{

height: 100%;

position: relative;

}

#wrap>.nav>img{

position: absolute ;

right: 0px;

bottom: 0px;

margin: 4px;

border-radius: 50% ;

}

.home:hover{

transform: rotate(360);

}

window.onload =function(){

var homeEle = document.querySelector("#wrap>.home");

var flag= true;

var imgs =document.querySelectorAll("#wrap>.nav>img");

function fn(){

this.style.transition=0.3+"s";

this.style.transform ="rotate(-360deg) scale(1)";

this.style.opacity =1;

this.removeEventListener("transitionend",fn);

}

for (var i=0;i

imgs[i].onclick =function(){

this.style.transform ="rotate(-360deg) scale(2)";

this.style.transition ="0.3s";

this.style.opacity =0.1;

this.addEventListener("transitionend",fn);

}

}

homeEle.onclick =function(){

console.log(imgs.length);

if(flag){

this.style.transform="rotate(-720deg) ";

imgs.forEach((index,No)=>{

imgs[No].style.right = getLocation(140,No*22.5/180*Math.PI).left+"px";

imgs[No].style.bottom = getLocation(140,No*22.5/180*Math.PI).top+"px";

imgs[No].style.transform ="rotate(-360deg) scale(1)";

imgs[No].style.transition ="1s "+No*0.1+"s";

});

}else{

this.style.transform="rotate(0)";

imgs.forEach((index,No)=>{

imgs[No].style.right = 0+"px";

imgs[No].style.bottom = 0+"px";

imgs[No].style.transform ="rotate(0deg) scale(1)";

imgs[No].style.transition="1s "+(0.4-No*0.1)+"s";

});

}

flag =!flag;

}

var getLocation =function(r,deg){

var x =Math.round(r*Math.sin(deg));

var y =Math.round(r*Math.cos(deg));

return{left:x,top:y};

}

}

889eda77239b8d3578f12fee81ea91a8.png

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值