📜  如何使用 HTML、CSS 和 JavaScript 为 Portfolio Gallery 添加过滤器?

📅  最后修改于: 2022-05-13 01:56:43.023000             🧑  作者: Mango

如何使用 HTML、CSS 和 JavaScript 为 Portfolio Gallery 添加过滤器?

当您的网站包含不同类型的内容或如此多的内容时,投资组合库很有用。借助投资组合库,您可以轻松地将首页上的所有内容显示给用户。但是如果用户想要一些特定的内容,那么我们需要在投资组合上附加过滤器。在本文中,我们将使用 JavaScript 添加过滤器。在继续阅读本文之前,您可以查看文章“如何使用 HTML 和 CSS 创建作品集画廊? '。
创建结构:在本节中,我们将创建投资组合的基本网站结构。在这里,我们将附加标题属性,以便用户可以知道投资组合每个网格上的内容类型。

  • HTML 代码:在本节中,我们将设计 Portfolio Gallery 的基本结构。
html


 

    

 

 
    
    
        

GeeksforGeeks

        

A Computer Science Portal for Geeks

        
                   

Portfolio of Languages

                   
                                                            
                   
            
                
                                         

                        HTML Tutorials                                              

                     

                        HTML stands for Hyper Text Markup                         Language. It is used to design web                         pages using markup language. HTML                         is the combination of Hypertext                         and Markup language. Hypertext                         defines the link between the web                         pages.                     

                  
            
            
                
                                         

                        CSS Tutorials                                              

                     

                        Cascading Style Sheets, fondly                         referred to as CSS, is a simply                         designed language intended to                         simplify the process of making                         web pages presentable. CSS allows                         you to apply styles to web pages.                     

                  
            
            
                
                                         

                        PHP Tutorials                                              

                     

                        The term PHP is an acronym for PHP:                         Hypertext Preprocessor. PHP is a                         server-side scripting language                         designed specifically for web                         development. PHP can be easily                         embedded in HTML files.                     

                  
            
            
                
                                         

                        JavaScript Tutorials                                              

                     

                        Javascript was developed by Brendan                         Eich in 1995. At first, it was called                         LiveScript but was later name to                         JavaScript. JavaScript is the muscle                         of the structure                     

                  
            
        
    
 


CSS


javascript


html


 

    
 
    

 

 
    
    
        

GeeksforGeeks

        

A Computer Science Portal for Geeks

        
                   

Portfolio of Languages

                   
                                                            
                   
            
                
                                         

                        HTML Tutorials                                              

                     

                        HTML stands for Hyper Text Markup                         Language. It is used to design web                         pages using markup language. HTML                         is the combination of Hypertext                         and Markup language. Hypertext                         defines the link between the web                         pages.                     

                  
            
            
                
                                         

                        CSS Tutorials                                              

                     

                        Cascading Style Sheets, fondly                         referred to as CSS, is a simply                         designed language intended to                         simplify the process of making                         web pages presentable. CSS allows                         you to apply styles to web pages.                     

                  
            
            
                
                                         

                        PHP Tutorials                                              

                     

                        The term PHP is an acronym for PHP:                         Hypertext Preprocessor. PHP is a                         server-side scripting language                         designed specifically for web                         development. PHP can be easily                         embedded in HTML files.                     

                  
            
            
                
                                         

                        JavaScript Tutorials                                              

                     

                        Javascript was developed by Brendan                         Eich in 1995. At first, it was called                         LiveScript but was later name to                         JavaScript. JavaScript is the muscle                         of the structure                     

                  
            
        
    
            


设计结构:在上一节中,我们已经创建了基本网站的结构,现在我们将使用 CSS 来设计网页的结构。

  • CSS 代码:

CSS


  • JavaScript 代码:

javascript


结合 HTML、CSS 和 JavaScript 代码:结合 HTML、CSS 和 JavaScript 部分代码以制作带有过滤器的完整作品集库。

html



 

    
 
    

 

 
    
    
        

GeeksforGeeks

        

A Computer Science Portal for Geeks

        
                   

Portfolio of Languages

                   
                                                            
                   
            
                
                                         

                        HTML Tutorials                                              

                     

                        HTML stands for Hyper Text Markup                         Language. It is used to design web                         pages using markup language. HTML                         is the combination of Hypertext                         and Markup language. Hypertext                         defines the link between the web                         pages.                     

                  
            
            
                
                                         

                        CSS Tutorials                                              

                     

                        Cascading Style Sheets, fondly                         referred to as CSS, is a simply                         designed language intended to                         simplify the process of making                         web pages presentable. CSS allows                         you to apply styles to web pages.                     

                  
            
            
                
                                         

                        PHP Tutorials                                              

                     

                        The term PHP is an acronym for PHP:                         Hypertext Preprocessor. PHP is a                         server-side scripting language                         designed specifically for web                         development. PHP can be easily                         embedded in HTML files.                     

                  
            
            
                
                                         

                        JavaScript Tutorials                                              

                     

                        Javascript was developed by Brendan                         Eich in 1995. At first, it was called                         LiveScript but was later name to                         JavaScript. JavaScript is the muscle                         of the structure                     

                  
            
        
    
            

输出: