GithubHelp home page GithubHelp logo

Comments (4)

Txori avatar Txori commented on June 16, 2024

So I programmed my own buttons, thanks to this useful hint.
Now I'm trying to use a static nipple instead. It's there, working, but not throwing any events...
I just got from this:

	var nippleManager = nipplejs.create({
	    zone: document.getElementById('box'),
	    color: 'red'
	});

to that:

	var nippleManager = nipplejs.create({
	    zone: document.getElementById('box'),
	    color: 'red',
	    mode: 'static',
	    position: {left: '100px', bottom: '100px'}
	});

What am I missing?

from nipplejs.

Txori avatar Txori commented on June 16, 2024

I made a very simple test, and everything is working but the static nipple:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
		"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<head>
<title>Nipple debug</title>
<meta http-equiv="content-type" content="text/html;charset=UTF-8" />
</head>

<body bgcolor="#CCCCCC">

<script src="nipplejs.js"></script>

<div class="static-box" id="nipplebox"></div>

<script>
	
var nippleManager = nipplejs.create({
    zone: document.getElementById('nipplebox'),
    color: 'red',
    //mode: 'semi',
    //mode: 'static',
    //catchDistance: 200,
	position: {left: '50%', bottom: '50%'}
});

nippleManager.on('added', function (evt, nipple) {
	nipple.on('start move end', function(evt, data) {
		console.log(data);
	});
});

</script>

<style>
#nipplebox {
	width:800px;
	height: 600px;
	background-color:#bbccaa;
	border: 2px solid rgba(90, 90, 60);
	position:relative;
	top:0;
	left:0;
	margin-left: auto;
	margin-right: auto;
}
</style>

</body>
</html>

I really don't know what's going on with it...
It is available here:
https://www.txori.com/stuff/ruffle/simplenipple.php

from nipplejs.

Txori avatar Txori commented on June 16, 2024

I'm still digging, and it appears that the on added doesn't work when the nipple is static:

nippleManager.on('added', function (evt, nipple) {
	console.log("nipple added");
}

So I replaced it by:

var nipple = nippleManager.get(0);
nipple .on('start move end', function(evt, data) {
	console.log(data);
});

There should be a bit of explanations about this in the help doc :)

from nipplejs.

yoannmoinet avatar yoannmoinet commented on June 16, 2024

it appears that the on added doesn't work when the nipple is static

This is expected since the joystick is already there and never actually added.
The added event is for other modes than static.

from nipplejs.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.