search
HomeWeb Front-endHTML Tutorial用Css给你的图片加上Instagram滤镜_html/css_WEB-ITnose

CSSgram

一个支持Instagram 滤镜库的 Sass/CSS框架

图片演示

DEMO2

这是什么

Cssgram 是一个使用CSS给图片加上类似Instagram的滤镜库。我们所做的就是通过改变各种各样的 混合模式 颜色或者渐变所产生的效果运用到图片上。这也就意味着减少更少的图片处理,以及提供更多的有趣的效果。

我们使用伪类(i.e, ::before and ::after )创建滤镜效果,这样你必须在img 外面包裹一层标签,我们建议你使用 figure 标签进行去包裹你的图片。

如何使用

你可以使用下面两种方法来使用CSSgram:

使用 CSS Class

使用 class 你可以轻松给你的图片添加各式各样的滤镜

1 使用css 外链

<link rel="stylesheet" href="https://cssgram-cssgram.netdna-ssl.com/cssgram.min.css">

*你也可直接下载压缩的 CSS文件 。

然后本地引用:

`

`

然后在你的元素添加class即可生效

案例:

<!-- HTML --><figure class="aden">  <img  src="/static/imghwm/default1.png"  data-src="../img.png"  class="lazy" alt="用Css给你的图片加上Instagram滤镜_html/css_WEB-ITnose" ></figure>

接着,引入外部样式(e.g. )

目前提供的滤镜

你可以在html中直接使用:

  • Aden: class="aden"

  • Reyes: class="reyes"

  • Perpetua: class="perpetua"

  • Inkwell: class="inkwell"

  • Toaster: class="toaster"

  • Walden: class="walden"

  • Hudson: class="hudson"

  • Gingham: class="gingham"

  • Mayfair: class="mayfair"

  • Lo-fi: class="lofi"

  • X-Pro II: class="xpro2"

  • 1977: class="_1977"

  • Brooklyn: class="brooklyn"

  • Nashville: class="nashville"

  • Lark: class="lark"

  • Moon: class="moon"

  • Clarendon: class="clarendon"

  • Willow: class="willow"

    • *

使用Sass @extend or @mixin

如果你希望自定义你的css命名,你可以把 .scss 文件引入到你的项目中来 。然后你可以使用 @extend 在你希望定义的样式中去使用这些滤镜。

  1. 下载 scss/ 目录内容

    *使用 @import 将文件 scss/cssgram.scss 引入到你的主文件中来 (i.e. main.scss ).

@import 'vendor/cssgram';

*在需要的样式上进行扩展 (e.g. @extend %aden or 使用 mixins @include aden() )。

比如:

<!-- HTML --><figure class="viz--beautiful">  <img  src="/static/imghwm/default1.png"  data-src="../img.png"  class="lazy" alt="用Css给你的图片加上Instagram滤镜_html/css_WEB-ITnose" ></figure>// Sass.viz--beautiful {  @extend %aden;}

或者使用 mixins (更加方便)

// Sass (without adding new CSS3 filters).viz--beautiful {  @include aden();}// Sass (adding new CSS3 filters).viz--beautiful {  @include aden(blur(2px) /*...*/);}

当然,如果你只用到了某一个效果,这样你也只需要引入对应 scss 文件即可( scss/aden.scss )。

目前可用的效果

在Scss中使用

Extends

  • Aden: @extend %aden

  • Reyes: @extend %reyes

  • Perpetua: @extend %perpetua

  • Inkwell: @extend %inkwell

  • Toaster: @extend %toaster

  • Walden: @extend %walden

  • Hudson: @extend %hudson

  • Gingham: @extend %gingham

  • Mayfair: @extend %mayfair

  • Lo-fi: @extend %lofi

  • X-Pro II: @extend %xpro2

  • 1977: @extend %_1977

  • Brooklyn: @extend %brooklyn

  • Nashville: @extend %nashville

  • Lark: @extend %lark

  • Moon: @extend %moon

  • Clarendon: @extend %clarendon

  • Willow: @extend %willow

Mixins(你可以加入更多的css3滤镜进来)

  • Aden: @include aden()

  • Reyes: @include reyes()

  • Perpetua: @include perpetua()

  • Inkwell: @include inkwell()

  • Toaster: @include toaster()

  • Walden: @include walden()

  • Hudson: @include hudson()

  • Gingham: @include gingham()

  • Mayfair: @include mayfair()

  • Lo-fi: @include lofi()

  • X-Pro II: @include xpro2()

  • 1977: @include _1977()

  • Brooklyn: @include brooklyn()

  • Nashville: @include nashville()

  • Lark: @include lark()

  • Moon: @include moon()

  • Clarendon: @include clarendon()

  • Willow: @include willow()

更多阅读: https://github.com/JackPu/CSSgram

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Are the HTML tags and elements the same thing?Are the HTML tags and elements the same thing?Apr 28, 2025 pm 05:44 PM

The article explains that HTML tags are syntax markers used to define elements, while elements are complete units including tags and content. They work together to structure webpages.Character count: 159

What is the significance of <head> and <body> tag in HTML?What is the significance of <head> and <body> tag in HTML?Apr 28, 2025 pm 05:43 PM

The article discusses the roles of <head> and <body> tags in HTML, their impact on user experience, and SEO implications. Proper structuring enhances website functionality and search engine optimization.

What is the difference between <strong>, <b> tags and <em>, <i> tags?What is the difference between <strong>, <b> tags and <em>, <i> tags?Apr 28, 2025 pm 05:42 PM

The article discusses the differences between HTML tags , , , and , focusing on their semantic vs. presentational uses and their impact on SEO and accessibility.

Please explain how to indicate the character set being used by a document in HTML?Please explain how to indicate the character set being used by a document in HTML?Apr 28, 2025 pm 05:41 PM

Article discusses specifying character encoding in HTML, focusing on UTF-8. Main issue: ensuring correct display of text, preventing garbled characters, and enhancing SEO and accessibility.

What are the various formatting tags in HTML?What are the various formatting tags in HTML?Apr 28, 2025 pm 05:39 PM

The article discusses various HTML formatting tags used for structuring and styling web content, emphasizing their effects on text appearance and the importance of semantic tags for accessibility and SEO.

What is the difference between the 'id' attribute and the 'class' attribute of HTML elements?What is the difference between the 'id' attribute and the 'class' attribute of HTML elements?Apr 28, 2025 pm 05:39 PM

The article discusses the differences between HTML's 'id' and 'class' attributes, focusing on their uniqueness, purpose, CSS syntax, and specificity. It explains how their use impacts webpage styling and functionality, and provides best practices for

What is the 'class' attribute in HTML?What is the 'class' attribute in HTML?Apr 28, 2025 pm 05:37 PM

The article explains the HTML 'class' attribute's role in grouping elements for styling and JavaScript manipulation, contrasting it with the unique 'id' attribute.

What are different types of lists in HTML?What are different types of lists in HTML?Apr 28, 2025 pm 05:36 PM

Article discusses HTML list types: ordered (<ol>), unordered (<ul>), and description (<dl>). Focuses on creating and styling lists to enhance website design.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor