Initial Commit
This commit is contained in:
15
web/revslider/examples/js_embed.html
Normal file
15
web/revslider/examples/js_embed.html
Normal file
@@ -0,0 +1,15 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>Revolution Slider Example - Embedding with JavaScript Method</title>
|
||||
<link rel="stylesheet" type="text/css" media="all" href="../revslider/public/assets/css/settings.css" />
|
||||
<script type="text/javascript" src="../assets/js/includes/jquery/jquery.js"></script>
|
||||
<script type="text/javascript" src="../revslider/public/assets/js/jquery.themepunch.tools.min.js"></script>
|
||||
<script type="text/javascript" src="../revslider/public/assets/js/jquery.themepunch.revolution.min.js"></script>
|
||||
<script type="text/javascript" id="revslider_script" src="../assets/js/revslider.js"></script>
|
||||
</head>
|
||||
<body style="margin: 0; padding: 0">
|
||||
<div class="revslider" data-alias="example"></div>
|
||||
</body>
|
||||
</html>
|
||||
12
web/revslider/examples/php_embed.php
Normal file
12
web/revslider/examples/php_embed.php
Normal file
@@ -0,0 +1,12 @@
|
||||
<?php include '../embed.php'; ?>
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>Revolution Slider Example - Embedding with PHP Method</title>
|
||||
<?php RevSliderEmbedder::headIncludes(); ?>
|
||||
</head>
|
||||
<body style="margin: 0; padding: 0">
|
||||
<?php RevSliderEmbedder::putRevSlider('example'); ?>
|
||||
</body>
|
||||
</html>
|
||||
23
web/revslider/examples/php_embed_separate_css_js.php
Normal file
23
web/revslider/examples/php_embed_separate_css_js.php
Normal file
@@ -0,0 +1,23 @@
|
||||
<?php include '../embed.php'; ?>
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>Revolution Slider Example - Embedding with PHP Method</title>
|
||||
<!-- revslider css only -->
|
||||
<?php RevSliderEmbedder::cssIncludes(); ?>
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
|
||||
</head>
|
||||
<body style="margin: 0; padding: 0">
|
||||
<div class="content">
|
||||
<?php RevSliderEmbedder::putRevSlider('example'); ?>
|
||||
</div>
|
||||
|
||||
<!----------------------------->
|
||||
<!-- here comes your scripts -->
|
||||
<!----------------------------->
|
||||
<!-- revslider javascript -->
|
||||
<!-- jsIncludes(false) - false parameter disable revslider jquery library -->
|
||||
<?php RevSliderEmbedder::jsIncludes(false); ?>
|
||||
</body>
|
||||
</html>
|
||||
17
web/revslider/examples/php_embed_with_your_jquery.php
Normal file
17
web/revslider/examples/php_embed_with_your_jquery.php
Normal file
@@ -0,0 +1,17 @@
|
||||
<?php include '../embed.php'; ?>
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>Revolution Slider Example - Embedding with PHP Method</title>
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
|
||||
<!----------------------------->
|
||||
<!-- here comes your scripts -->
|
||||
<!----------------------------->
|
||||
<!-- headIncludes(false) - false parameter disable revslider jquery library -->
|
||||
<?php RevSliderEmbedder::headIncludes(false); ?>
|
||||
</head>
|
||||
<body style="margin: 0; padding: 0">
|
||||
<?php RevSliderEmbedder::putRevSlider('example'); ?>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user