如果用户未注册,我试图在我的相册上获得模糊效果。我明白了,但仅适用于 chrome。在我的 Firefox 14.0.1 (linux) 中,我无法让它工作
我的html模板(我在django下开发)
<h2> Gallerie</h2>
<ul class="galeria" id="imagenes">
{% for image in gallery %}
{% if user.is_authenticated %}
<a rel="prettyPhoto[gallery]" href="{{image.url}}">
<img width="120px" height="120px" alt="{{image.comment}}" src="{{image.url}}"/>
</a>
{% else %}
<img class="blur" alt="{{image.comment}}" src="{{image.url}}"/>
{% endif %}
{% endfor %}
</ul>
我的网站.css
img.blur{
-webkit-filter: grayscale(0.5) blur(10px);
filter: grayscale(0.5) blur(10px);
width:120px;
height:120px;
}
任何帮助,将不胜感激。谢谢 :)