• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

HTML使用纯CSS实现图片的响应式横向瀑布流

武飞扬头像
Luke
帮助3622

说明

使用纯粹的CSS来实现HTML横向瀑布流展示,不使用javascript,让响应速度更快

预览图:横线排列的图片列表

代码部分

<!DOCTYPE html>
<html ng-app="App">
    <head>
        <script src="https://cdn.staticfile.org/angular.js/1.4.6/angular.min.js"></script>
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width">
        <title>JS Bin</title>
        <style>
            section {
                display: flex;
                flex-wrap: wrap;
            }
            section::after {
                content: '';
                flex-grow: 999999999;
            }
            div {
                margin: 2px;
                background-color: white;
                position: relative;
            }
            i {
                display: block;
            }
            img {
                position: absolute;
                top: 0;
                width: 100%;
                vertical-align: bottom;
            }
            body {
                margin: 0 auto;
                width: 80%;
            }
        </style>
    </head>
    <body ng-controller="ImageLayout">
        <section>
            <div ng-repeat="img in imgs"
                style="width:{{img.width*200/img.height}}px;flex-grow:{{img.width*200/img.height}}">
                <i style="padding-bottom:{{img.height/img.width*100}}%"></i>
                <img src="{{img.fullUrl}}" alt="">
            </div>
        </section>
    </body>
    <script>
        angular.module('App', []).controller('ImageLayout', ImageLayout);
        function ImageLayout($scope, $http) {
            $http.get('https://xieranmaya.github.io/images/cats/cats.json').success(function (imgs) {
                $scope.imgs = imgs
            })
        }
    </script>
</html>

 

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /boutique/detail/taneeja
系列文章
更多 icon
同类精品
更多 icon
继续加载