2017-05-04 180 views
-1

我想創建一些與此網站上顯示的內容非常相似的鏈接,如下所示。我需要開發一個網頁,其中有一些玻璃的圖像可以通過幾個按鈕或顏色選擇器改變顏色。差不多要創建我自己的,這是什麼鏈接上顯示的版本:http://revitalisekitchens.com/colour-picker開始使用(需要幫助)

+1

什麼是你的問題/問題* *究竟? – LoganMzz

+0

我只需要知道如何開發這個,以及如何開始:) –

回答

0

你可以使用這樣的事情:

input { 
/* removes default styling from input color element */ 
padding: 0; 
border: none; 
/* makes input (color swatch) 100% size of container */ 
position: absolute; 
width: 100%; 
height: 100%; 
/* mix blend mode makes the color of the swatch alter the image behind it. */ 
mix-blend-mode: hue; /* try screen, multiply or other blend modes for different effects */ 
cursor: pointer; 
} 

https://codepen.io/noahblon/pen/ZbjmbK

+0

這幾乎是我所尋找的除了我需要幾個按鈕來選擇顏色或顯示在圖像旁邊的顏色選擇器:) –