karnbyf Postado Janeiro 24, 2006 Denunciar Share Postado Janeiro 24, 2006 Existe algum jeito de se, ao clicar em um botão, apareça uma pequena janela na qual é possível selecionar uma cor dentre uma paleta inteira e retornar esta cor para uma <DIV> existente na página do botão?Obrigado! Citar Link para o comentário Compartilhar em outros sites More sharing options...
0 fercosmig Postado Janeiro 24, 2006 Denunciar Share Postado Janeiro 24, 2006 da uma olhada neste codigo que eu peguei ae, os creditos estão ae!copia ele na integra e faz um teste ae:<html><body><div id="link" style="width: 100px; height: 5px; padding: 8px; background-color: #ffffcc; border: solid 1px #000000"><a OnClick="if (document.getElementById('paleta').style.display == '') { document.getElementById('paleta').style.display = 'none' } else { document.getElementById('paleta').style.display = '' }"><b>Paleta de cores</b></a></div><br><div id="paleta" style="width: 100px; display: none; padding: 8px; background-color: #ffffcc; border: solid 1px #000000"><script LANGUAGE="JavaScript"><!--// Copyright © 1996-1997 Tomer Shiran. All rights reserved.// Permission given to use the script provided that this notice remains as is.// Additional scripts can be found at http://www.geocities.com/~yehuda/// create 6-element arrayvar hex = new Array(6)// assign non-dithered descriptorshex[0] = "FF"hex[1] = "CC"hex[2] = "99"hex[3] = "66"hex[4] = "33"hex[5] = "00"// accept triplet string and display as background colorfunction display(triplet) {// set color as background colordocument.bgColor = '#' + triplet// display the color hexadecimal triplet//alert('O JavaSite Responde: A cor deste background é ' + triplet)}// draw a single table cell based on all descriptorsfunction drawCell(red, green, blue) {// open cell with specified hexadecimal triplet background colordocument.write('<TD BGCOLOR="#' + red + green + blue + '">')// open a hypertext link with javascript: scheme to call display functiondocument.write('<A HREF="javascript:display(\'' + (red + green + blue) + '\')">')// print transparent image (use any height and width)document.write('<IMG SRC="place.gif" BORDER=0 HEIGHT=12 WIDTH=12>')// close link tagdocument.write('</A>')// close table celldocument.write('</TD>')}// draw table row based on red and blue descriptorsfunction drawRow(red, blue) {// open table rowdocument.write('<TR>')// loop through all non-dithered color descripters as green hexfor (var i = 0; i < 6; ++i) {drawCell(red, hex, blue)}// close current table rowdocument.write('</TR>')}// draw table for one of six color cube panelsfunction drawTable(blue) {// open table (one of six cube panels)document.write('<TABLE CELLPADDING=0 CELLSPACING=0 BORDER=0>')// loop through all non-dithered color descripters as red hexfor (var i = 0; i < 6; ++i) {drawRow(hex, blue)}// close current tabledocument.write('</TABLE>') }// draw all cube panels inside table cellsfunction drawCube() {// open tabledocument.write('<TABLE CELLPADDING=5 CELLSPACING=0 BORDER=1><TR>')// loop through all non-dithered color descripters as blue hexfor (var i = 0; i < 6; ++i) {// open table cell with white background colordocument.write('<TD BGCOLOR="#FFFFFF">')// call function to create cube panel with hex blue hexdrawTable(hex)// close current table celldocument.write('</TD>')}// close table row and tabledocument.write('</TR></TABLE>')}// call function to begin executiondrawCube()// --></script></div></p><!--mstheme--></body></html>abraços Citar Link para o comentário Compartilhar em outros sites More sharing options...
0 karnbyf Postado Janeiro 25, 2006 Autor Denunciar Share Postado Janeiro 25, 2006 valeu pela dica =D Citar Link para o comentário Compartilhar em outros sites More sharing options...
Pergunta
karnbyf
Existe algum jeito de se, ao clicar em um botão, apareça uma pequena janela na qual é possível selecionar uma cor dentre uma paleta inteira e retornar esta cor para uma <DIV> existente na página do botão?
Obrigado!
Link para o comentário
Compartilhar em outros sites
2 respostass a esta questão
Posts Recomendados
Participe da discussão
Você pode postar agora e se registrar depois. Se você já tem uma conta, acesse agora para postar com sua conta.