Jump to content

vpsadm

Neophyte
  • Posts

    2
  • Joined

  • Last visited

Information

  • Sex
    мужской

vpsadm's Achievements

Explorer

Explorer (1/14)

0

Reputation

  1. Вот такой код есть для простой галереи, нашелся вот здесь - http://www.codingcage.com/2015/06/creating-image-gallery-from-folder-php.html : http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Creating an Image Gallery From Folder using PHP</title> <style type="text/css"> body { background:#fff; } img { width:auto; box-shadow:0px 0px 20px #cecece; -moz-transform: scale(0.7); -moz-transition-duration: 0.6s; -webkit-transition-duration: 0.6s; -webkit-transform: scale(0.7); -ms-transform: scale(0.7); -ms-transition-duration: 0.6s; } img:hover { box-shadow: 20px 20px 20px #dcdcdc; -moz-transform: scale(0.8); -moz-transition-duration: 0.6s; -webkit-transition-duration: 0.6s; -webkit-transform: scale(0.8); -ms-transform: scale(0.8); -ms-transition-duration: 0.6s; } </style> </head> <body> <?php $folder_path = './'; //image's folder path $num_files = glob($folder_path . "*.{JPG,jpg,gif,png,bmp}", GLOB_BRACE); $folder = opendir($folder_path); if($num_files > 0) { while(false !== ($file = readdir($folder))) { $file_path = $folder_path.$file; $extension = strtolower(pathinfo($file ,PATHINFO_EXTENSION)); if($extension=='jpg' || $extension =='png' || $extension == 'gif' || $extension == 'bmp') { ?> <a href="<?php echo $file_path; ?>"><img src="<?php echo $file_path; ?>" height="250" /></a> <?php } } } else { echo "the folder was empty !"; } closedir($folder); ?> </body> </html> Возьми его за основу, разберись и допили до того состояния, которое обозначил - слайдер по всем картинкам в папке. А код выкладывай сюда потом, как допилишь, мне тоже такой пригодится. Этот у себя проверил - нормально работает. Вот так оно выглядит, например: http://vpsadm.ru/wp-content/uploads/2016/11/
  2. Сегодня черкнул статью на эту тему. Ибо сам давно искал решение, кое-что нашлось. В подробностях описал тут http://vpsadm.ru/vneshnie-js-resursyi-proksirovanie-cherez-svoy-sayt/ В общем, можно проксировать эти скрипты через свой домен в настройках виртуалхоста. Это доступно только если сайт ваш на VPS или своем сервере. На шареде настроить не получится. #nginx location = /metrika.js { proxy_pass https://mc.yandex.ru/metrika/watch.js; proxy_set_header Host mc.yandex.ru; } ######################## #apache (нужен mod_proxy) ProxyPass "/metrika.js" "https://mc.yandex.ru/metrika/watch.js" ProxyPassReverse "/metrika.js" "https://mc.yandex.ru/metrika/watch.js" И потом в счетчиках меняем адрес скрипта на свой - src="http://site.com/metrika.js" или просто src="/metrika.js"
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy