php - 如何使用 PHP 浮点值数组在 CSS 中创建条形图?

标签 php html css webmatrix

我正在使用 Microsoft WebMatrix 创建一个基本网站。我在 PHP 中有一组浮点值。我想使用这些值在 CSS 中创建一个条形图(例如,值为 50.0 创建一个高度为 300 像素的 50% 的条形图)。这是我正在使用的全部代码,因为代码不多。当我在浏览器(Google Chrome 或 Internet Explorer)中运行它时,它会写入第一个 echo 语句,但不会产生任何条形图。如何编辑我的代码以便绘制条形图?

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8" />
    <title>Bar chart</title>
    <style>
        .bar
        {
            color: #00ff21;
            width:  30px; //This defines the colour and width of the bars
        }    
    </style>
</head>
<body>
    <?php        
        echo("<p>This is my bar chart!</p>");

        $values = array(50.0, 20.0, 35.0, 70.0); //This is the array of float values

        for ($i = 0; $i < count($values); $i++) //This loop should create a bar for each element in the array
        {
            $currentHeight = 300 * $values[$i] / 100.0; ?>  
            <div class="bar" style="height: <?php echo($currentHeight); ?> "></div>        
            <?php
        }
    ?>
</body>

最佳答案

所以我对 css 不是很熟悉,但是你的 div 元素中缺少一些参数才能让它工作。

<div class="bar" style="height: <?php echo $currentHeight . "px;"; ?> border: solid; display: inline-block;"></div>

你在没有添加 px 识别的情况下回显了高度并且你没有给它实心边框,所以它无论如何都不会在网络浏览器中显示出来。

您还可以在样式标签内添加边框和显示值,但您还需要在那里有空的高度选择器,我不完全确定为什么会这样,但代码看起来像这样:

        .bar
    {
        color: #00ff21;
        width:  30px; //This defines the colour and width of the bars
        height: ;
        display: inline-block;
        border: solid;
    }

<div class="bar" style="height: <?php echo $currentHeight . "px;"; ?>"></div>

关于php - 如何使用 PHP 浮点值数组在 CSS 中创建条形图?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29500072/

相关文章:

php - Magento MySQL 数据库备份 - 会恢复删除一切吗?

html - 如何调整线条的线宽?

php - 使用 "Simple HTML DOM"获取两个跨度之间的文本

javascript - 删除父 Div 以在没有样式的情况下正确显示表单输入元素

html - 位置固定div,动态高度,ul中图片对齐

php - 使用 PHP 将相对路径转换为绝对 URL

php - Facebook Graph Api 获取链接帖子的图像

php - Symfony 1.4 将变量从操作传递到 View

html - 右箭头隐藏在主div的后面

javascript - 如何在 HTML 中找到行与行之间的空格?