iframe não scrool pdf no safari
Olá pessoas, não consigo fazer com que o iframe funcione scroll no safari.. segue o codigo.
index.php
<!DOCTYPE html>
<html>
<head>
<title>PDF frame scrolling test</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<style>
#container { overflow: auto; -webkit-overflow-scrolling: touch; height: 500px; }
object { width: 100%; height: 10000px; }
</style>
</head>
<body>
<div id="container">
<iframe style="border:0;" src="pdf.php" width="100%" height="100%" ></iframe>
</div>
</body>
</html>
<?php
$caminho = file_get_contents('teste.pdf');
header('Content-type: application/pdf;');
echo $caminho;
?>
pdf.php
Discussão (1)
Carregando comentários...