我有一個將應用some CSS shadow的div。我需要用jQuery得到以下陰影元素:使用jQuery獲取陰影樣式
h-shadow
,v-shadow
,以像素爲單位- 的
color
陰影的blur
和spread
,在一些字符串,並沒有多麼 inset
,如果它應用於box-shadow
屬性。
怎麼辦?是否有一些特定的CSS屬性,如border-top-right-radius
獲得右上邊框半徑而不是與border-radius
一起使用?
因此,示例代碼:
<div id="the_div" style="box-shadow:10px 10px 5px 2px #f00 inset;">...</div>
現在一些JavaScript ...
$(function(){
$('#the_div').someFunction(); // returns the h-shadow, for example
});
你是什麼意思與「我需要得到....與jQuery」? – caramba 2013-03-13 19:41:06
我想要得到這個值,就像'('selector')。height()'。但不是高度,而是這些屬性。 – Keelan 2013-03-13 19:41:39
粘貼你的代碼 – Biswajit 2013-03-13 19:42:44