Intercâmbio de Uso com Imagens de Fundo
Descrição
Para definir a imagem de plano de fundo, use o atributo data-interchange dentro da tag <div>. Você pode passar o caminho da imagem para definir a propriedade da imagem de fundo da regra de correspondência.
Exemplo
O exemplo a seguir demonstra o uso de intercâmbio com imagem de fundo no Foundation -
<!DOCTYPE html>
<html>
<head>
<title>Foundation Template</title>
<meta name = "viewport" content = "width = device-width, initial-scale = 1">
<link rel = "stylesheet" href = "https://cdnjs.cloudflare.com/ajax/libs/foundation/5.5.2/css/foundation.css">
<script src = "https://cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
<script src = "https://cdnjs.cloudflare.com/ajax/libs/foundation/5.5.2/js/foundation.min.js"></script>
<script src = "https://cdnjs.cloudflare.com/ajax/libs/modernizr/2.8.3/modernizr.js"></script>
</head>
<body>
<div data-interchange = "[/foundation/images/foundation-plugin/smallback.jpg, (small)],
[/foundation/images/foundation-plugin/mediumback.jpg, (medium)],
[/foundation/images/foundation-plugin/background.jpg, (large)]">
<h2>Welcome to TutorialsPoint</h2>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting
industry. Lorem Ipsum has been the industry's standard dummy text ever since
the 1500s, when an unknown printer took a galley of type and scrambled it to
make a type specimen book.
</p>
</div>
<script>
$(document).ready(function() {
$(document).foundation();
})
</script>
</body>
</html>
Resultado
Vamos realizar as seguintes etapas para ver como funciona o código fornecido acima -
Salve o código html fornecido acima background_image.html Arquivo.
Abra este arquivo HTML em um navegador, uma saída é exibida conforme mostrado abaixo.