如何在HTML中的jumbotron引导程序上上传背景img?

时间:2019-07-07 02:09:35

标签: python html twitter-bootstrap image

在将我的img上传到HTML中的jumbotron引导程序时出现问题。我已将照片导入img文件夹,但已使用该文件夹的正确生根。但无济于事。

我已经尝试过将文件从文件夹中取出并直接使用,但是仍然没有显示图像。这也适用于带有引导程序的python flask项目,以帮助我进行样式设置。可能有问题吗?

use strict; use warnings;

use Archive::Tar;
use Tk;

my $mw = MainWindow -> new;
$mw -> Label ( -text => "Please type the files you wish to backup, separated by spaces." ) -> pack;

my $inputEntry = $mw -> Entry ( -width => 30 );
$inputEntry -> pack;

$mw -> Button ( -text => "Compress!", -command => sub { compress() } ) -> pack;

MainLoop;

sub compress {
    my $input = $inputEntry -> get;
    my @input; 
    my @dirfiles;
    unless ( $input !~ m/ / ) {
        @input = split ( m/ /, $input );
    } else {
        @input = ( $input );
    }

    foreach(@input) { if(-d $_) { push(@dirfiles,glob "'${_}/*'"); } }
    push(@input,@dirfiles);

    Archive::Tar -> create_archive ( "TEST.tbz", COMPRESS_BZIP, @input )
}

0 个答案:

没有答案