I have this code: http://jsfiddle.net/hevercking/t0qxavfc/
when you click the "&"; buttons, social network links appear at the top of the button, using the WCircleMenu effect, when someone goes through the bar menu, the jquery.fullPage effect appears, since everything works fine here, but now I want to change the angle_start to 180º to display on the oter page, because what if I click the button on the otter page, the social buttons appear on the other side, I tried to make some changes, but everything stops working, can someone help me do this?
this is my js code
$(document).ready(function() {
$('#fullpage').fullpage({
verticalCentered: false,
onLeave: function(index, nextIndex, direction){
if(index == 1){
$('.barra').addClass('fixed');
}
if(nextIndex == 1){
$('.barra').removeClass('fixed');
pag = 'nextIndex';
}
},
afterResize: function(){
windowsHeight = $(window).height();
}
});
$(document).ready(function(){
$('#my-menu').WCircleMenu({
angle_start : -Math.PI/1.371,
delay: 50,
distance: 100,
angle_interval: Math.PI/6.5,
easingFuncShow:"easeOutBack",
easingFuncHide:"easeInBack",
step:15,
openCallback:true,
closeCallback:true,
itemRotation:360,
iconRotation:180,
});
});