Getting witn Visual Studio 2012
I have this code for my project in VS 2012 and doesn't work. Any idea about that?. Thanks in advance.
Regards
- <script src="~/Scripts/jQuery.min.js" type="text/javascript"></script>
- <script type="text/javascript">
- $(document).ready(function () {
- $('.slideshow').cycle({
- fx: 'suffle',
- continous: 1 // Aquí cambia el tipo de transición de imagen a utilizar,
- });
- });
- </script>
- <div class="slideshow">
- <img src="Images/foto1.JPG" width="200" height="200" class="first" />
- <img src="Images/foto2.JPG" width="200" height="200" />
- <img src="Images/foto3.JPG" width="200" height="200" />
- <img src="Images/foto4.JPG" width="200" height="200" />
- <img src="Images/foto5.JPG" width="200" height="200" />
- </div>