framework7

Open full view…

Color Picker

Gerard Coll (Неуроник)
Mon, 21 Sep 2015 20:10:07 GMT

Hey , a feature could be implemented a Color Picker, how to see in https://github.com/brianpkelley/md-color-picker

coder0815
Wed, 23 Sep 2015 09:42:25 GMT

Yes, yes , yes! ;) _____________ Btw: Downvote for AngularJS!!! --- ...Let's be honest...AngularJS isn't exactly the easiest thing to learn. Yeah, you pick it up and you think to yourself "This is awesome. It's really easy and magical!!!" Then you start building your app and find yourself going "holy...what!!?? I don't understand!!!" I've heard this story over and over again.... http://eisenbergeffect.bluespire.com/all-about-angular-2-0/ --- ...The Angular that's being built is not the Angular I signed up to work on and after careful consideration I do not believe it’s best for the Durandal community.... http://eisenbergeffect.bluespire.com/leaving-angular/

martinturner
Wed, 28 Jun 2017 06:43:25 GMT

Is there any other way to use a colour picker from one of the other js's available?

ErikCornelisse
Wed, 28 Jun 2017 17:45:31 GMT

Not as fancy as your example but what about the default color picker ? ``` <input type="color" id="myColor"> <p>Click the "Try it" button to change the color of the color picker.</p> <button onclick="myFunction()">Try it</button> <script> function myFunction() { document.getElementById("myColor").value = "#FF8040"; } </script> ``` Copied from [w3schools](https://www.w3schools.com/jsref/tryit.asp?filename=tryjsref_color_value)

ErikCornelisse
Wed, 28 Jun 2017 17:46:22 GMT

Ps, md-color-picker looks really cool :-)

NikolayKuznetsov
Wed, 28 Jun 2017 18:06:03 GMT

> @ErikCornelisse > md-color-picker looks it's slow!! even on desktop browser!

ErikCornelisse
Wed, 28 Jun 2017 20:21:27 GMT

Ok, thanks for the warning. Although I don't have any need for a color picker :-)

martinturner
Thu, 29 Jun 2017 05:50:11 GMT

hmm i dont know why but i tried to use this for my Framework7/Phonegap build and it wouldnt show me the colour wheel? any reason why for that?

martinturner
Fri, 30 Jun 2017 03:23:30 GMT

seems like the input type color only works on android but not iOS.. or am i doing something wrong?