0
我有一個div,當我向下滾動頁面時,顏色會從透明變爲不透明。此代碼當前使用靜態RGB值,然後根據滾動位置添加不透明度值。使用jQuery滾動動態顏色變化
$(document).ready(function() {
$(window).scroll(function() {
var windowHeight = $(window).height();
var $scrollPercent = ($(document).scrollTop()/windowHeight);
if ($(document).scrollTop() > 100) {
$(".fade-overlay").css({backgroundColor:'rgba(0,168,80,'+$scrollPercent+')'});
} else {
$(".fade-overlay").css({backgroundColor:'rgba(0,168,80,'+$scrollPercent+')'});
}
});
});
我想將靜態RGB值更改爲動態RGB值。
目前,我在名爲'primary_colour'的字段中有高級自定義字段創建的十六進制顏色值。 我可以將這個值作爲'background-color'輸出到div,但不知道是否可以將它轉換爲RGB並將其插入到我已有的代碼中?
任何人都可以幫助我解決我的困惑,如何讓這個工作?我感謝您提供的任何幫助。
你會想使用php轉換它[檢查此鏈接](http://css-tricks.com/snippets/php/convert-hex-to-rgb/) – Mark 2015-02-08 22:42:14