0

我正在对http://codepen.io/wesbos/pen/adQjoY进行一个小更新,并想使用 CSS 变量来更改图像,只是想看看我能不能做到。到目前为止,它不起作用。

<img src=imageFile>

<style>
:root {
    --image: 1;
    --imageFile: '"https://source.unsplash.com/7bwQXzbF6KE/800x500"';
}

img {
    src: var(--imageFile);
}
</style>

我有一些If, Then, Else,实现了<script> ... </script>改变imageFile变量。

在 DevTools 控制台中,我得到:

GET file:///Users/tim/bloc/JavaScript30-master/03%20-%20CSS%20Variables/imageFile net::ERR_FILE_NOT_FOUND

图像没有改变。你能帮我吗?这是我更新前的完整代码:

// get the inputs
const inputs = [].slice.call(document.querySelectorAll('.controls input'));

// listen for changes
inputs.forEach(input => input.addEventListener('change', handleUpdate));
inputs.forEach(input => input.addEventListener('mousemove', handleUpdate));

function handleUpdate(e) {
// append 'px' to the end of spacing and blur variables
    const suffix = (this.id === 'base' ? '' : 'px');
    document.documentElement.style.setProperty(`--${this.id}`, this.value + suffix);
}
:root {
  --base: #ffc600;
  --spacing: 10px;
  --blur: 10px;
}

body {
  text-align: center;
}

img {
  padding: var(--spacing);
  background: var(--base);
  -webkit-filter: blur(var(--blur));
  /*  */
  filter: blur(var(--blur));
}

.hl {
  color: var(--base);
}

body {
  background: #193549;
  color: white;
  font-family: 'helvetica neue', sans-serif;
  font-weight: 100;
  font-size: 50px;
}

.controls {
  margin-bottom: 50px;
}

a {
  color: var(--base);
  text-decoration: none;
}

input {
  width:100px;
}
<h2>Update CSS Variables with <span class='hl'>JS</span></h2>
<div class="controls">
  <label>Spacing:</label>
  <input type="range" id="spacing" min="10" max="200" value="10">

  <label>Blur:</label>
  <input type="range" id="blur" min="0" max="25" value="10">

  <label>Base Color</label>
  <input type="color" id="base" value="#ffc600">
</div>

<img src="http://unsplash.it/800/500?image=899">

<p class="love">Made by <a href="http://twitter.com/wesbos">@wesbos</a> </p>
<p class="love">Chrome 49+, Firefox 31+</p>

4

3 回答 3

3

src是 HTML 属性,而不是 CSS 属性。

src=imageFile指向当前 URL 目录路径中名为imageFile. 这就是浏览器试图这样做的原因GET file:///Users/tim/bloc/JavaScript30-master/03%20-%20CSS%20Variables/imageFile,这自然是行不通的。

您仍然可以使用自定义属性,但由于您需要设置 HTML 属性,而不是 CSS 属性,因此img不需要该规则。改为提供img一个 ID,从自定义属性值中删除双引号,因为它们不需要(即使在 JavaScript 中也不需要),并将srcHTML 属性的值直接设置为自定义属性值:

var customProps = window.getComputedStyle(document.documentElement);
var img = document.createElement('img');
img.id = 'imageFile';
img.alt = '';
img.src = customProps.getPropertyValue('--imageFile');
document.body.appendChild(img);
:root {
    --image: 1;
    --imageFile: https://source.unsplash.com/7bwQXzbF6KE/800x500;
}
<!--
The script should generate an img element that looks like this:
<img id="imageFile" alt="" src="https://source.unsplash.com/7bwQXzbF6KE/800x500">
-->

一些注意事项:

  • --image尽管在此示例中未使用自定义属性,但我将保留它。我认为它应该作为查询字符串数据附加到 URL 中——这将留给读者作为练习。

  • 在此示例中,该 ID 在技术上也未使用,因为我正在通过 JavaScript 添加元素,因为在有效的 HTML 文档中无法标记img没有非空元素的元素src,但在稍后换出图像时它会很有用问题中描述。

  • 如果有人想知道将 JavaScript 用于此类事情是否是一种 hack,它不是——规范本身明确将 JavaScript 列为 CSS 自定义属性的有效(甚至是典型)用例。

于 2016-12-28T02:38:19.007 回答
0

如果您想使用 CSS 来指定文件的来源,您可以使用如下内容:

HTML:

<img>

CSS:

img{
  content:url("IMAGE URL");
}

供您参考:https ://jsfiddle.net/tqoLe7r3/

于 2016-12-27T19:09:00.997 回答
-1

在您的:root声明中,您只能将 CSS 值设置为变量。

尝试这个:

:root{
  --imageFile: url('https://source.unsplash.com/7bwQXzbF6KE/800x500');
}
img {
  content: var(--imageFile);
}

像这样:https ://jsfiddle.net/wdkmbeL7/

于 2016-12-27T19:33:30.903 回答