當前位置: 首頁>>代碼示例>>PHP>>正文


PHP lessc::compileValue方法代碼示例

本文整理匯總了PHP中lessc::compileValue方法的典型用法代碼示例。如果您正苦於以下問題:PHP lessc::compileValue方法的具體用法?PHP lessc::compileValue怎麽用?PHP lessc::compileValue使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在lessc的用法示例。


在下文中一共展示了lessc::compileValue方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: compileValue

 public function compileValue($value)
 {
     if ($value[0] == "raw_color") {
         $value = $this->coerceColor($value);
     }
     return parent::compileValue($value);
 }
開發者ID:Marcin11,項目名稱:_mojePanstwo-Portal,代碼行數:7,代碼來源:sort.php

示例2: compileValue

	function compileValue($value) {
		$ignore = array('list', 'keyword', 'string', 'color', 'function');
		if ($value[0] == 'number' || !in_array($value[0], $ignore)) {
			$value[1] = $value[1] + 0; // convert to either double or int
		}

		return parent::compileValue($value);
	}
開發者ID:alsvader,項目名稱:hackbanero,代碼行數:8,代碼來源:sort.php

示例3: embed

 /**
  * Convert an image URI to a base64-encoded data URI.
  *
  * @par Example:
  * @code
  *   .fancy-button {
  *       background-image: embed('../images/button-bg.png');
  *   }
  * @endcode
  * @param array $frame
  * @param lessc $less
  * @return string
  */
 public static function embed($frame, $less)
 {
     $base = pathinfo($less->parser->sourceName, PATHINFO_DIRNAME);
     $url = trim($less->compileValue($frame), '"\'');
     $file = realpath($base . '/' . $url);
     $data = CSSMin::encodeImageAsDataURI($file);
     $less->addParsedFile($file);
     return CSSMin::buildUrlValue($data);
 }
開發者ID:Habatchii,項目名稱:wikibase-for-mediawiki,代碼行數:22,代碼來源:ResourceLoaderLESSFunctions.php

示例4: compileValue

 public function compileValue($value, Browser $vendor = null)
 {
     if ($value[0] === 'list') {
         $handler = $this;
         $result = implode($value[1], array_map(function ($item) use($handler, $vendor) {
             return $handler->compileValue($item, $vendor);
         }, $value[2]));
     } else {
         if ($value[0] === 'keyword' && $vendor) {
             $sName = $value[1];
             if (in_array($sName, array_keys($this->aProperties))) {
                 $value[1] = $vendor->prefixProperty($sName, $this->getProperty($sName));
             }
             $result = parent::compileValue($value);
         } else {
             $result = parent::compileValue($value);
         }
     }
     return $result;
 }
開發者ID:TheProjecter,項目名稱:sylma,代碼行數:20,代碼來源:Prefixer.php


注:本文中的lessc::compileValue方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。