the code
the problem is
when we click the submit button it wo'nt work , can any1 tell what is the problem
and if you want i will share the code of pro.php , i am fully open source
| Code: |
|
<html> <head> <link rel="stylesheet" type="text/css" href="css/screen.css"> <script type="text/javascript" src="js/ddcolorposter.js"></script> <script type="text/javascript" src="js/YAHOO.js" ></script> <script type="text/javascript2" src="js/log.js" ></script> <script type="text/javascript" src="js/color.js" ></script> <script type="text/javascript" src="js/event.js" ></script> <script type="text/javascript" src="js/dom.js" ></script> <script type="text/javascript" src="js/animation.js" ></script> <script type="text/javascript" src="js/dragdrop.js" ></script> <script type="text/javascript" src="js/slider.js" ></script> <script type="text/javascript"> var hue; var picker; //var gLogger; var dd1, dd2; var r, g, b; function init() { if (typeof(ygLogger) != "undefined") ygLogger.init(document.getElementById("logDiv")); pickerInit(); ddcolorposter.fillcolorbox("colorfield1", "colorbox1") //PREFILL "colorbox1" with hex value from "colorfield1" ddcolorposter.fillcolorbox("colorfield2", "colorbox2") //PREFILL "colorbox1" with hex value from "colorfield1" } // Picker --------------------------------------------------------- function pickerInit() { hue = YAHOO.widget.Slider.getVertSlider("hueBg", "hueThumb", 0, 180); hue.onChange = function(newVal) { hueUpdate(newVal); }; picker = YAHOO.widget.Slider.getSliderRegion("pickerDiv", "selector", 0, 180, 0, 180); picker.onChange = function(newX, newY) { pickerUpdate(newX, newY); }; hueUpdate(); dd1 = new YAHOO.util.DD("pickerPanel"); dd1.setHandleElId("pickerHandle"); dd1.endDrag = function(e) { // picker.thumb.resetConstraints(); // hue.thumb.resetConstraints(); }; } executeonload(init); function pickerUpdate(newX, newY) { pickerSwatchUpdate(); } function hueUpdate(newVal) { var h = (180 - hue.getValue()) / 180; if (h == 1) { h = 0; } var a = YAHOO.util.Color.hsv2rgb( h, 1, 1); document.getElementById("pickerDiv").style.backgroundColor = "rgb(" + a[0] + ", " + a[1] + ", " + a[2] + ")"; pickerSwatchUpdate(); } function pickerSwatchUpdate() { var h = (180 - hue.getValue()); if (h == 180) { h = 0; } document.getElementById("pickerhval").value = (h*2); h = h / 180; var s = picker.getXValue() / 180; document.getElementById("pickersval").value = Math.round(s * 100); var v = (180 - picker.getYValue()) / 180; document.getElementById("pickervval").value = Math.round(v * 100); var a = YAHOO.util.Color.hsv2rgb( h, s, v ); document.getElementById("pickerSwatch").style.backgroundColor = "rgb(" + a[0] + ", " + a[1] + ", " + a[2] + ")"; document.getElementById("pickerrval").value = a[0]; document.getElementById("pickergval").value = a[1]; document.getElementById("pickerbval").value = a[2]; var hexvalue = document.getElementById("pickerhexval").value = YAHOO.util.Color.rgb2hex(a[0], a[1], a[2]); ddcolorposter.initialize(a[0], a[1], a[2], hexvalue) } </script> <!--[if gte IE 5.5000]> <script type="text/javascript"> function correctPNG() // correctly handle PNG transparency in Win IE 5.5 or higher. { for(var i=0; i<document.images.length; i++) { var img = document.images[i] var imgName = img.src.toUpperCase() if (imgName.substring(imgName.length-3, imgName.length) == "PNG") { var imgID = (img.id) ? "id='" + img.id + "' " : "" var imgClass = (img.className) ? "class='" + img.className + "' " : "" var imgTitle = (img.title) ? "title='" + img.title + "' " : "title='" + img.alt + "' " var imgStyle = "display:inline-block;" + img.style.cssText if (img.align == "left") imgStyle = "float:left;" + imgStyle if (img.align == "right") imgStyle = "float:right;" + imgStyle if (img.parentElement.href) imgStyle = "cursor:hand;" + imgStyle var strNewHTML = "<span " + imgID + imgClass + imgTitle + " style=\"" + "width:" + img.width + "px; height:" + img.height + "px;" + imgStyle + ";" + "filter:progid:DXImageTransform.Microsoft.AlphaImageLoader" + "(src=\'" + img.src + "\', sizingMethod='scale');\"></span>" img.outerHTML = strNewHTML i = i-1 } } } YAHOO.util.Event.addListener(window, "load", correctPNG); </script> <![endif]--> </head> <body> <form action="pro.php" method="post"> <div> text: <input name="text" type="text"> (use | for new line) </div> <div> won: <input name="won" type="text"> </div> <div> draw: <input name="draw" type="text"> </div> <div> lost: <input name="lost" type="text"> </div> <div> <div id="pickerPanel" class="dragPanel"> <h4 id="pickerHandle"> </h4> <div id="pickerDiv"> <img id="pickerbg" src="img/pickerbg.png" alt=""> <div id="selector"><img src="img/select.gif"></div> </div> <div id="hueBg"> <div id="hueThumb"><img src="img/hline.png"></div> </div> <div id="pickervaldiv"> <form name="pickerform" onsubmit="return pickerUpdate()"> <br /> R <input name="pickerrval" id="pickerrval" type="text" value="0" size="3" maxlength="3" /> H <input name="pickerhval" id="pickerhval" type="text" value="0" size="3" maxlength="3" /> <br /> G <input name="pickergval" id="pickergval" type="text" value="0" size="3" maxlength="3" /> S <input name="pickergsal" id="pickersval" type="text" value="0" size="3" maxlength="3" /> <br /> B <input name="pickerbval" id="pickerbval" type="text" value="0" size="3" maxlength="3" /> V <input name="pickervval" id="pickervval" type="text" value="0" size="3" maxlength="3" /> <br /> <br /> # <input name="pickerhexval" id="pickerhexval" type="text" value="0" size="6" maxlength="6" /> <br /> </form> </div> <div id="pickerSwatch"> </div> </div> </div> </div> </div> </div> pie colour (be sure to select the box first to use this colour picker) : <input name="colour" type="text" id="colorfield1" onFocus="ddcolorposter.echocolor(this, 'colorbox1')"> <span id="colorbox1" class="colorbox">____</span> <br /> <input type="submit"> </form> </body> </html> |
the problem is
when we click the submit button it wo'nt work , can any1 tell what is the problem
and if you want i will share the code of pro.php , i am fully open source
